-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (64 loc) · 2.27 KB
/
Copy pathindex.html
File metadata and controls
78 lines (64 loc) · 2.27 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<title>About Me</title>
<link rel="stylesheet" href="resources/layout.css" type="text/css">
<script src="resources/javascript.js" charset="utf-8"></script>
</head>
<body>
<div id="header" class="content">
<h1>About Me</h1>
<p>
My name is Darnell and I'm a aspiring Front-End web developer. I'm 28 and was born, raised and currently living in Brooklyn, NY.
</p>
</div>
<div class="content clearfix">
<!-- Page Navigation -->
<div id="nav">
<img src="http://i.imgur.com/cSBQHBR.jpg">
<h2>Contents</h2>
<ul>
<li><a href="#projects">Projects</a></li>
<li><a href="#hobbies">Hobbies</a></li>
<li><a href="#fun-facts">Fun Facts</a></li>
</ul>
</div>
<!-- Main content area -->
<div id="main">
<h2 id="projects">Projects</h2>
<p>Describe the kinds of projects you like to work on and give a brief overview of how you accomplished them...</p>
<h3>Project #1 Title</h3>
<p>Project #1 Description...</p>
<h3>Project #2 Title</h3>
<p>Project #2 Description...</p>
<h2 id="hobbies">Hobbies</h2>
<p>In my spare time, I like playing video games, going to the gym and going out with friends on the weekend. Also like binging out on Netflix just like any other person under 35.</p>
<h3>Item #1 Title</h3>
<p>Use this paragraph to explain Item #1</p>
<ul>
<li>Cool thing I did</li>
<li>Another cool thing I did</li>
<li>Final cool thing I did</li>
</ul>
<h3>Item #1 Title</h3>
<p>Use this paragraph to explain Item #1</p>
<ul>
<li>Cool thing I did</li>
<li>Another cool thing I did</li>
<li>Final cool thing I did</li>
</ul>
<h2 id="fun-facts">Fun Facts</h2>
<h3>Subhead</h3>
<p>Use this list to tell us some fun things about yourself.</p>
<ul>
<li>Cool thing I did</li>
<li>Another cool thing I did</li>
<li>Final cool thing I did</li>
</ul>
</div>
</div>
<div id="copyright" class="content">
© 2017 [Darnell Jackson], All Rights Reserved.
</div>
</body>
</html>