-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (84 loc) · 2.89 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
<!DOCTYPE html>
<html>
<head>
<title>My HTML/CSS Practice!</title>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<link href="http://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css">
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<h1>Lindsey's Dope Web Dev Practice</h1>
<h2>Lists!</h2>
<ul class="list">
<li class="item">
<div class="kitty"></div>
<a class="link" href="">First Link</a>
<p>Second line of text</p>
</li>
<li class="item">
<div class="kitty"></div>
<a class="link" href="">Second Link</a>
<p>Second line of text</p>
</li>
<li class="item">
<div class="kitty"></div>
<a id="purple" href="">Purple</a>
<p>Second line of text</p>
</li>
<li class="item">
<div class="kitty"></div>
<a class="link" href="">Fourth Link</a>
<p>Second line of text</p>
</li>
<li class="item">
<div class="kitty"></div>
<a class="link" href="">Fifth Link</a>
<p>Second line of text</p>
</li>
<li class="item">
<div class="kitty"></div>
<a class="link" href="">Sixth Link</a>
<p>Second line of text</p>
</li>
<li class="item">
<div class="kitty"></div>
<a class="link" href="">Seventh Link</a>
<p>Second line of text</p>
</li>
<li class="item">
<div class="kitty"></div>
<a class="link" href="">Eighth Link</a>
<p>Second line of text</p>
</li>
</ul>
<h2>Forms!</h2>
<form class="inputs">
<label class="personal-info">First:<input type="text" name="first"></label>
<label class="personal-info">Last:<input type="text" name="last"></label>
<label class="personal-info">DOB(XX/XX/XXXX):<input type="text" name="dob"></label>
<label id="choice">Select these Choices:
<select name="choice">
<option value="choice-1">Choice 1</option>
<option value="choice-2">Choice 2</option>
<option value="choice-3">Choice 3</option>
</select>
</label>
<label id="textarea-label" for="area">Textarea:</label>
<textarea id="area"></textarea>
<span>Did you complete the form?:</span>
<label>Yes<input name="complete" type="radio" value="yes"></label>
<label>No<input name="complete" type="radio" value="no"></label>
<input id="submit" type="button" value="Submit">
</form>
<div class="popover-stuff">
<h2 class="trigger">Popover Trigger!</h2>
<div class="popover">
<div class="arrow-up"></div>
<div class="rectangle">
<input id="popover-button" type="button" value="Button">
</div>
</div>
</div>
</body>
</html>