-
Notifications
You must be signed in to change notification settings - Fork 75
/
index.html
81 lines (67 loc) · 2.57 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<title>About Me</title>
<link rel="stylesheet" href="resources/layout.css" type="text/css">
<link rel="stylesheet" href="resources/typography.css" type="text/css">
<link rel="stylesheet" href="resources/colors_1.css" type="text/css">
</head>
<body>
<!-- Page Header (title and objective) -->
<div id="header" class="content">
<h1>About Me</h1>
<p>
My objective is to learn the basics of HTML,
CSS, and JavaScript to further my understanding of front-end development.
</p>
</div>
<div class="content clearfix">
<!-- Page Navigation -->
<div id="nav">
<h2>Navigation</h2>
<ul>
<li><a href="#projects">Projects</a></li>
<li><a href="#work_experience">Work Experience</a></li>
<li><a href="#education">Education</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>
<h3>Project #3 Title</h3>
<p>Project #3 Description...</p>
<h2 id="work_experience">Work Experience</h2>
<p>Give your visitors a nice message describing the kind of work experience you've had and highlight your successes...</p>
<h3>Job #1 Title</h3>
<p>Use this paragraph to explain what you did at the job.</p>
<ul>
<li>Cool thing I did</li>
<li>Another cool thing I did</li>
<li>Final cool thing I did</li>
</ul>
<h3>Job #2 Title</h3>
<p>Use this paragraph to explain what you did at the job.</p>
<ul>
<li>Cool thing I did</li>
<li>Another cool thing I did</li>
<li>Final cool thing I did</li>
</ul>
<!-- Education -->
<h2 id="education">Education</h2>
<p>Use this paragraph to describe your educational background and how awesomely learned you are :)</p>
<h3>Education #1 Title</h3>
<p>Education description...</p>
<h3>Education #2 Title</h3>
<p>Education description...</p>
</div>
</div>
<div id="copyright" class="content">
Copyright © 2012 [YOUR NAME HERE], All Rights Reserved
</div>
</body>
</html>