-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (93 loc) · 3.07 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html>
<head>
<meta name="keywords" content="">
<title>Team Stacks HW2</title>
<meta name="description" content="This is Team Stack' HW2 submission.">
<meta name="author" content="Team Stacks">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,700italic,700,300' rel='stylesheet' type='text/css'>
<!--<link href='https://fonts.googleapis.com/css?family=Titillium+Web:300,300italic,600,600italic' rel='stylesheet' type='text/css'>
-->
<link href="style.css" rel="stylesheet">
<style>
</style>
</head>
<body>
<header>
<nav>
Team Stacks' HTML Guide!!!
<a href="index.html">Home</a> |
<a href="team.html">Team</a> |
<a href="conformance.html">Conformance</a>
</nav>
</header>
<section>
<!-- BEGIN CONTENT OF THE PAGE! -->
<h2>
Welcome to Team Stacks' HTML Guide.
</h2>
<p>
Check out the links below to see the different examples of how HTML elements can be used!
</p>
<ul>
<li>Every page on this website utilizes tags like html, head, body, footer, style, meta, link, and nav.</li>
<li><a href="tests/formatting.html">Formatting</a>
<ul>
<li>Shows usage of tags that provide additional meaning to text.
</li>
</ul>
</li>
<li><a href="tests/forms.html">Forms</a>
<ul>
<li>Example of a form with controls such as text fields, buttons, drop-down menus, and progress bars using HTML elements like progress, option, and input.</li>
</ul>
</li>
<li><a href="tests/images.html">Images</a>
<ul>
<li>Explores tags such as img, figure, figcaption, map, and area</li>
</ul>
</li>
<li><a href="tests/layouts.html">Layouts</a>
<ul>
<li>Shows usage of different layouts tags like article, section, aside, div, iframe, span, address, etc.</li>
</ul>
</li>
<li><a href="tests/lists.html">Lists</a>
<ul>
<li>Shows usage of different tags like ul, ol, dl, dt, dd for listing items.</li>
</ul>
</li>
<li><a href="tests/media.html">Media</a>
<ul>
<li>Shows usage of different media tags such as video, audio, source, track, embed, object, and param.</li>
</ul>
</li>
<li><a href="tests/ruby.html">Ruby</a>
<ul>
<li>Shows usage of ruby tags for East Asian typography.</li>
</ul>
</li>
<li><a href="tests/scripts.html">Scripts</a>
<ul>
<li>Uses script, noscript, canvas, and templates.</li>
</ul>
</li>
<li><a href="tests/style.html">Style</a>
<ul>
<li>Shows usage of tags that are used to change the appearance of text.</li>
</ul>
</li>
<li><a href="tests/tables.html">Tables</a>
<ul>
<li>Example using all table-related HTML tags such as tr, td, caption, and more.</li>
</ul>
</li>
</ul>
<!-- END CONTENT OF THE PAGE! -->
</section>
<footer>
© 2015 Team Stacks ♥ UCSD ♥ CSE 134B
</footer>
</body>
</html>