forked from fauxparse/hello-summer
-
Notifications
You must be signed in to change notification settings - Fork 146
/
index.html
45 lines (45 loc) · 1.89 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<title>Hello, Summer of Tech!</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700|Covered+By+Your+Grace" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link href="hello.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<p>Hello</p>
<p>My name is</p>
</header>
<main>
<!--
TODO: Replace the image with your own, e.g., "me.png" or "me.jpg".
You'll need to ensure that you add the image to the codebase if you change this.
-->
<img src="me.svg">
<!-- TODO: Replace the text with your name. -->
<h1>Your name here</h1>
<p>
Here's a good place to write a little bit about yourself.
Include anything you want people to know about you.
</p>
<!-- TODO: Replace the text with a description about yourself. -->
<p>
Intelligentsia dreamcatcher chartreuse franzen sartorial ugh. Whatever
brunch asymmetrical tousled occupy before they sold out, distillery VHS
fingerstache salvia church-key readymade listicle. Craft beer skateboard
hella, hoodie brooklyn.
</p>
<ul class="social">
<!-- TODO: Replace the links with your own GitHub account, website and Twitter handle. -->
<li><a rel="github" href="http://github.com/fluxfederation">My code</a></li>
<li><a rel="home" href="http://fluxfederation.com">My website</a></li>
<li><a rel="twitter" href="http://twitter.com/fluxfederation">@fluxfederation</a></li>
</ul>
</main>
<footer>
<a href="http://fluxfederation.com"><img src="flux-logo.svg" alt="Flux Federation"></a>
<a href="http://www.summeroftech.co.nz/"><img src="sot-logo.svg" alt="Summer of Tech"></a>
</footer>
</body>
</html>