-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle-sheet.html
More file actions
51 lines (44 loc) · 1.03 KB
/
style-sheet.html
File metadata and controls
51 lines (44 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Style Sheet</title>
<link rel="stylesheet" href="style.css" charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Mitr" rel="stylesheet">
</head>
<body>
<header>
<h1>Header</h1>
</header>
<nav id="navbar">
<h1>navbar</h1>
<a>links</a>
</nav>
<main>
<h1>Unordered List ==></h1>
<ul>
<h1>Headers:</h1>
<h1>H1</h1>
<h2>H2</h2>
<h3>H3</h3>
<h4>H4 (Not used)</h4>
<p>p</p>
</ul>
<section>
<label for="">label</label>
<input class='submit' type="Submit" name="name" value="Button">
</section>
<section>
<label for="">Select:</label>
<select class="" name="">
<option value="option">option</option>
<option value="option">option</option>
<option value="option">option</option>
<option value="option">option</option>
</select>
<label for="">Form Field</label>
<input class='formSpot' type="text" name="name" value="Button">
</section>
</main>
</body>
</html>