-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
76 lines (61 loc) · 3.42 KB
/
about.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- This is the Doctype Type Declaration that defines which version of XHTML/HTML
is this document using -->
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- The xmlns attribute specifies the xml namespace for this document -->
<head>
<!-- Start of head -->
<title>About</title>
<!-- Defines a title for the Web Page -->
<meta name="description" content="Online Course School" />
<meta name="keywords" content="courses, school, learning," />
<meta name="author" content="Victor" />
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<!-- The meta tags define the information used and supported by all browsers.
This information can be seen if you right-click on the page
and click on View Info (on Firefox).
It defines the description of the Web Page,
the keywords, that are used by Search Engines and Web Services,
and the Author of the page.
Also defines the type of content that this file will have, in this
case, its a "text/html" file with a character setting of UTF-8.
(http://en.wikipedia.org/wiki/UTF-8 for more information) -->
<link rel="stylesheet" href="style.css" type="text/css" />
<!-- This is the "include" of the Style Sheet (CSS file) -->
<link rel="shortcut icon" href="images/favicon.ico" />
<!-- This is the "include" of the Icon that will be seen next to the
title in the tab of your browser -->
</head>
<!-- End of head -->
<body>
<!-- Start of body -->
<!-- From here on, you will find several divisions identified by ID's.
These are used in the CSS file, to style the page. -->
<div id="header">
<!-- Definition of a division identified by "header" -->
<div id="logo"><a href="index.html"><img src="images/logo.png" width="200px" /></a></div>
<!-- Definition of a division identified by "logo" that is a link to
the home page as well as a image -->
<div id="nav">
<!-- Definition of a division identified by "nav"
By the way, for example, this division in the CSS file
is identified by #header #nav -->
<ul> <!-- Start tag of an unordered list -->
<li><a href="index.html">Home</a></li>
<!-- A list item that is a link to Home Page -->
<li><a href="about.html">About</a></li>
<!-- A list item that is a link to About Page -->
<li><a href="contact.html">Contact</a></li>
<!-- A list item that is a link to Contact Page -->
</ul> <!-- End of the list -->
</div> <!-- End of division "nav" -->
</div> <!-- End of division "header" -->
<div id="wrapper"> <!-- Start of division "wrapper" -->
<div id="main"><h3>About Page</h3></div>
<!-- A new division identified by "main" -->
<div id="footer"><br />© 2012 Final Project. All rights reserved.</div>
<!-- A new division identified by "footer" -->
</div> <!-- End of division "wrapper" -->
</body> <!-- End of body -->
</html> <!-- End of html -->