-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassignment3.html
More file actions
110 lines (100 loc) · 4 KB
/
assignment3.html
File metadata and controls
110 lines (100 loc) · 4 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Assignment 3 - Working with forms</title>
</head>
<body>
<header>
<div class="container-header">
<div>
<a href="#"><img src="./img/logo.png" alt="logo-website"></a>
</div>
<!-- <div>
<ul class="menu">
<a href="#">
<li>Books</li>
</a>
<a href="#">
<li>Authors</li>
</a>
<a href="#">
<li>What to Read?</li>
</a>
<a href="#">
<li>Gift Ideas</li>
</a>
<a href="#">
<li>About Us</li>
</a>
</ul>
</div>
<div class="login-header">
<ul class="icon-header">
<li>
<i class="fas fa-search"></i>
</li>
<li>
<i class="far fa-bookmark"></i>
</li>
<li>
<i class="fas fa-shopping-bag"></i>
</li>
</ul>
<button>LOGIN</button>
</div> -->
</div>
</header>
<main>
<div class="form-container">
<h2> REGISTER YOUR BOOK</h2>
<form method="post" action="">
<div class="title"><h3> Book Details</h3> <div class="line"></div></div>
<div><label for="title">Title</label><input type="text" placeholder="Your book title here. E.g. Harry Potter and The Fantastic Bootcamp"></div>
<div><label for="genre">Genre</label><input type="text" placeholder="Your book genre here. E.g. Fantasy"></div>
<div><label for="author">Author</label><input type="text" placeholder="Your book author here. E.g. J. K. Rowling"></div>
<div><label for="publisher">Publisher</label><input type="text" placeholder="Publisher of the book. E.g. Pustaka Melang"></div>
<div><label for="year">Year Published</label><input type="number" placeholder="1994"></div>
<div><label for="languanges">Languanges</label><input type="text" placeholder="Language used in the book. E.g. English"></div>
<div class="title"><h3> Registree Details</h3><div class="line"></div></div>
<div><label for="name">Name</label><input type="text" placeholder="Your name. E.g. Lannah Yeon"></div>
<div><label for="email">Languanges</label><input type="email" placeholder="Your email. E.g. l.yeon@email.com"></div>
<div><input type="checkbox" class="checkbox">I hereby agree to follow all rules and confirmed that all details are accurate</div>
<button>SAVE YOUR BOOK</button>
</form>
</div>
</main>
<footer>
<div class="container-footer">
<div>
<a href="#"><img src="./img/logo.png" alt="logo-website"></a>
</div>
<div class="socials-media">
<ul class="icon-media">
<li>
<a href=""><i class="fab fa-facebook"></i></a>
</li>
<li>
<a href=""><i class="fab fa-twitter"></i></a>
</li>
<li>
<a href=""><i class="fab fa-instagram"></i></a>
</li>
</ul>
</div>
</div>
<div class="disclaimer">
<div>
<p> Terms and Condition</p>
<p> Privacy Policy</p>
</div>
<div>
<p> +0123456789</p>
<p> siuuuuuuu99@gmail.com</p>
</div>
</div>
</footer>
</body>
</html>