forked from posinatel/form-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (31 loc) · 904 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>CSS Form</title>
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="css/t1/style.css" title="Theme One" />
<link rel="stylesheet alternate" href="css/t2/style.css" title="Theme Two" />
</head>
<body>
<h1>CSS Form</h1>
<form action="">
<fieldset>
<legend>Login</legend>
<label for="username">
Username
<input class="field" id="username" type="text">
</label>
<label for="secretword">
Password
<input class="field" id="secretword" type="password">
</label>
<label for="remember-me">
<input class="button" id="remember-me" type="checkbox">
Remember-me
</label>
<input type="submit" value="Sign in">
</fieldset>
</form>
</body>
</html>