-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage2.html
31 lines (31 loc) · 1 KB
/
page2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>More Inputs...</title>
<link href="style.css" rel="stylesheet" />
<script src="script.js"></script>
</head>
<body>
<article>
<h1 id="page-title">Make 'em do stuff</h1>
<p>
Let's make the inputs actually do things when you interact with them
</p>
<label for="text-input">page title</label>
<input id="text-input" type="text" value="Make 'em do stuff" />
<hr />
<label for="text-color-input">text color</label>
<input id="text-color-input" type="color" value="#808080" />
<hr />
<label for="background-color-input">background color</label>
<input id="background-color-input" type="color" value="#FFEFD5" />
<hr />
<label for="damn-button">a button</label>
<button id="damn-button">Just a damn button</button>
<a href="index.html" class="left-aligned-link"
>Too much take it back...</a
>
</article>
</body>
</html>