-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (54 loc) · 1.73 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
56
57
<!DOCTYPE html>
<html>
<head>
<title>My Own Microsite</title>
<link href="style.css" type="text/css" rel="stylesheet">
</head>
<body>
<header>
<img src="1.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>
<img src="2.jpg" class="profile-img">
<h1>Hi, I'm Super Mario</h1>
</div>
</section>
<section id="about">
<div>
<h2>About me</h2>
<p>I have really a nice family and I want to show you some of our photos.</p>
<h3>Achievements</h3>
<ul>
<li>Bachelor of photogenic posing, 2010</li>
<li>Mushroom certification from the Super Mario Institute, 2014</li>
<li>I coded a website, 2019</li>
</ul>
</div>
</section>
<section id="contact">
<div>
<h2>Contact me</h2>
<p>You can find me on:</p>
<ul>
<li><a href="https://twitter.com/Mario">Twitter</a></li>
<li><a href="https://www.reddit.com/user/Mario">Reddit</a></li>
<li><a href="https://www.instagram.com/Mario/">Instagram</a></li>
</ul>
<p>Or, you can <a href="mailto:[email protected]">send me an email</a>.</p>
</div>
</section>
</main>
<footer>
© Copyright Super Mario, 2019
</footer>
</body>
</html>