-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
44 lines (44 loc) · 1.63 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
<!DOCTYPE html>
<html>
<head>
<!-- ########### TODO ########### -->
<!-- enter your name in the title -->
<title>___________'s Homepage</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<!-- <nav> contains links that will allow us to navigate on the page -->
<nav>
<a href="portfolio.html">Portfolio</a>
<a href="blog.html">Blog</a>
<a href="index.html">About</a>
</nav>
<header>
<!-- ############## TODO ############## -->
<!-- enter your name also in the header -->
<h1>Personal Page of ___________</h1>
</header>
<section class="introduction">
<!-- ############################ TODO ############################ -->
<!-- replace with the URL to your personal image. see instructions. -->
<img src="url/to/your/image" alt="a pretty photo of myself">
<div>
<h1>About Me</h1>
<!-- ########### TODO ########### -->
<p>Introduce yourself! :)</p>
</div>
</section>
<section>
<h1>Why learn programming?</h1>
<!-- ########### TODO ########### -->
<p>Write out your personal motivations for joining this course.</p>
</section>
<footer>
<!-- ########################## TODO ########################## -->
<!-- replace the last parts of the URLs with your personal info -->
<a href="https://github.com/your-github-username">GitHub</a>
<a href="https://www.linkedin.com/in/your-linkedin-handle">LinkedIN</a>
<a href="https://twitter.com/your-twitter-handle">Twitter</a>
</footer>
</body>
</html>