-
Notifications
You must be signed in to change notification settings - Fork 0
/
color.html
35 lines (27 loc) · 919 Bytes
/
color.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href = "colorr.css">
</head>
<body>
<h3>I'm a h3 Header</h3>
<div class="firstDiv">
<p>I'm inside the first div</p>
</div>
<div class="secondDiv">
<p>I'm inside the second Div</p>
</div>
<p id="singledout">ids must be unique!</p>
<h3>Here is a list</h3>
<ul>
<li>Confirm? <input type="checkbox" name="" value=""></li>
<li>Feedback? <input type="text" name="" value=""></li>
<li><a href="www.pieriandata.com">Pierian Data</a></li>
<li><a href="www.npr.org">NPR</a></li>
</ul>
</body>
</html>