-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (54 loc) · 2.19 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
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<title>Boberick the llama</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img src="https://codetheweb.blog/assets/img/posts/steps-to-creating-a-website/llama.jpg" class="profile-img">
<nav>
<ul>
<li><a href="#hero">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="hero">
<div class="section-inner">
<img src="https://codetheweb.blog/assets/img/posts/steps-to-creating-a-website/llama.jpg" class="profile-img">
<h1>Hi, I'm Boberick the llama.</h1>
</div>
</section>
<section id="about">
<div class="section-inner">
<h2>About me</h2>
<p>I'm a really awesome llama. Every day I wake up, munch on some grass, do some coding and then go back to sleep.</p>
<h3>Achievements</h3>
<ul>
<li>Bachelor of photogenic posing, 2010</li>
<li>Llamaness certification from the Llama Institute, 2014</li>
<li>I coded a website, 2017</li>
</ul>
</div>
</section>
<section id="contact">
<div class="section-inner">
<h2>Contact me</h2>
<p>You can find me on:</p>
<ul>
<li><a href="https://twitter.com/llama">Twitter</a></li>
<li><a href="https://www.reddit.com/user/llama">Reddit</a></li>
<li><a href="https://www.instagram.com/llamasporfavor/">Instagram</a></li>
</ul>
<p>Or, you can <a href="mailto:[email protected]">send me an email</a>.</p>
</div>
</section>
</main>
<footer>
© Copyright Boberick The Llama, 2017
</footer>
</body>
</html>