forked from railsbridge/front-end-lesson
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (68 loc) · 2.51 KB
/
index.html
File metadata and controls
83 lines (68 loc) · 2.51 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
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<title>About Me</title>
<link rel="stylesheet" href="resources/typography.css" type="text/css">
<link rel="stylesheet" href="resources/colors_1.css" type="text/css">
<link rel="stylesheet" href="resources/layout.css" type="text/css">
</head>
<body>
Page Header (title and objective)
<div id="header" class="content">
<h1>Chase Guynn</h1>
<p>
My objective is to learn the basics of HTML,
CSS, and JavaScript to further my understanding of front-end development.
</p>
</div>
<a href="http://www.facebook.com"><img src = "resources/picture 2.jpg"></a>
<div class="content clearfix">
Page Navigation
<div id="nav">
<h2>Navigation</h2>
<ul>
<li><a href="http://www.amazon.com">Projects</a></li>
<li><a href="http://www.threecinteriors.com">Work Experience</a></li>
<li><a href="http://www.fsu.edu">Education</a></li>
</ul>
</div>
Main content area
<div id="main">
<h2 id="projects">Projects</h2>
<p>Trying to build my first page</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>Office Manger</h3>
<p>I do everything from payroll, to taxes, to the daily cash.</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>Studied at Florida State University</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>