-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
65 lines (44 loc) · 1.69 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
<!-- Project Name: Puzzled
Author: Scott McCord -->
<!-- landing page modeled off: http://go.fivestars.com/fivestars-trial -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Puzzled - Home</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=PT+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nunito|PT+Sans" rel="stylesheet">
</head>
<body class="landing">
<div class="nav-bar">
<div class="logo">Puzzled</div>
</div>
<div class="masthead-container">
<div class="text-container">
<p> Sip some tea, grab a blanket, and focus your mind. Ready for a puzzle? </p>
<p class="grey">Create a username to get started</p>
<form id="user-info" action="puzzled.html" method="get">
<div class="form-container">
<div class="form-column1">
<label for="username">Username:</label>
<label for="first-name">First Name: </label>
<label for="last-name">Last Name: </label>
<label class="fav-color" for="favorite-color">Favorite Color:</label>
</div>
<div class="form-column2">
<input class="text-box" type="text" id="username" name="username">
<input class="text-box" type="text" id="first-name" name="first-name">
<input class="text-box" type="text" id="last-name" name="last-name">
<input class="text-box" type="text" id="favorite-color" name="favorite-color">
</div>
</div>
<div class="submit-button">
<input class="submit" type="submit" value="Play now!">
</div>
</form>
</div>
</div>
</body>
</html>