-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (73 loc) · 3.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>bookstore.com</title>
<link rel="stylesheet" href="./style.css">
<script src="./script.js" defer></script>
</head>
<body>
<div class="left-container">
<div class="logo-div">
<img class="logo" src="./images/books-logo.png" alt="logo">
<div class="name">Mid-Continent Public Library</div>
</div>
<div class="credits">Photo by <a href="https://www.pexels.com/@rickyrecap/" target="_blank">Ricardo
Esquivel</a>
on <a href="https://www.pexels.com/" target="_blank">Pexels</a> </div>
</div>
<div class="right-container">
<form action="#" method="get">
<div class="quote">
<div>There is more treasure in books than in all the pirate's loot on Treasure Island - <b>Walt
Disney</b>
</div>
<div>Select your favorite books here.</div>
</div>
<div class="details">
<div class="heading">Let's do this!</div>
<div class="fields">
<div>
<div>
<label for="first-name">*First Name</label>
<input type="text" name="first-name" required>
</div>
<div>
<label for="last-name">Last Name</label>
<input type="text" name="last-name">
</div>
</div>
<div>
<div>
<label for="email">*Email</label>
<input type="email" name="email" required>
</div>
<div>
<label for="phone">Phone Number</label>
<input type="tel" name="phone">
</div>
</div>
<div>
<div>
<label for="password">*password</label>
<input type="password" name="password" class="password" required>
</div>
<div>
<label for="confirm-password">*Confirm Password</label>
<input type="password" name="confirm-password" class="confirm-password" required>
</div>
</div>
</div>
</div>
<div class="enter">
<button type="submit" class="btn">Create Account</button>
<div>Already have an account? <a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" target="_blank">Log
in</a> </div>
<div class="footer">by <a href="https://github.com/sakshamsds" target="_blank">sds</a> @ The Odin
Project
</div>
</div>
</form>
</div>
</body>
</html>