Add "much needed" "interesting" "content"

This commit is contained in:
Sam W 2019-03-03 02:01:39 +00:00
parent a27c11ffbc
commit 6fea89d08d
No known key found for this signature in database
GPG Key ID: 70A44224670D0043
3 changed files with 22 additions and 3 deletions

8
README.md Normal file
View File

@ -0,0 +1,8 @@
# Hacksrus.uk
The Hacks 'R' Us website.
## Contributing
Yes
### Even dumb shit?
100%

View File

@ -8,11 +8,19 @@
<body> <body>
<div class="container"> <div class="container">
<h1><a href="/"><img src="img/logo.svg" alt="Hacks 'R' Us Logo"></a></h1> <h1><a href="/"><img src="img/logo.svg" alt="Hacks 'R' Us Logo"></a></h1>
<h2>Who?</h2>
<ul class="people"> <ul class="people">
<li><a href="https://twitter.com/sudoreboot">Sam W</a></li> <li><a href="https://twitter.com/sudoreboot">Sam W</a></li>
<li><a href="https://twitter.com/Rrah99">Robert Walker</a></li> <li><a href="https://twitter.com/Rrah99">Robert Walker</a></li>
<li><a href="https://twitter.com/thomasslee97">Tom Lee</a></li> <li><a href="https://twitter.com/thomasslee97">Tom Lee</a></li>
<li><a href="https://www.google.com/search?&q=how+do+you+meet+nice+people">Other nice people</a></li>
</ul> </ul>
<h2>What?</h2>
<p>Dumb stuff with technology</p>
<h2>Where?</h2>
<p>Your local hacker camp or con</p>
<h2>When?</h2>
<p>Since 2018</p>
</div> </div>
</body> </body>
</html> </html>

View File

@ -1,6 +1,11 @@
body {
font-family: Comic Sans MS;
}
div.container { div.container {
max-width: 700px; max-width: 700px;
margin: 0 auto; margin: 0 auto;
text-align: center;
} }
ul.people { ul.people {
@ -44,6 +49,4 @@ ul.people>li>a {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
font-size: 20px; font-size: 20px;
font-family: Comic Sans MS
} }