forked from fluxfederation/hello-summer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 2.27 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_ow.jpg">
<!-- TODO: Replace the text with your name. -->
<h1>Witty Psuedonym</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>
I'd rather not include my name and photo on a public repository. Sorry.
</p>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</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>