-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
93 lines (88 loc) · 4.9 KB
/
signup.html
File metadata and controls
93 lines (88 loc) · 4.9 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
<!DOCTYPE html>
<html>
<head>
<title>LOGIN</title>
<meta charset="utf-8">
<meta name="keywords" content="Sign">
<meta name="description" content ="Sign">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles/signup.css" rel="stylesheet">
<link rel="shortcut icon" href="images/fav.png">
<link href="https://fonts.googleapis.com/css?family=Lato&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/e096953709.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="siteheader">
<header>
<div class="logo">
<img src="images\logo1.jpg" alt="Logo" >
</div>
<div class="search">
<input type="text" placeholder="Search for Products, Brands and More.." >
</div>
<div class="menu">
<ul>
<li><a href="signup.html">Login/Sign Up</a></li>
</ul>
</div>
</header>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="laptop.html">Laptop</a></li>
<li><a href="tv.html">Television</a></li>
<li><a href="phones.html">Mobile Phones</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</div>
<div class="signup">SIGN UP</div>
<div id="sform">
<input type="text" class="i" placeholder="Email Address"><br/>
<input type="text" class="i" placeholder="User Name"><br/>
<input type="password" class="i" placeholder="Password"><br/>
<button type="submit" value="SIGN UP"><a href="C:\Users\gunnk\OneDrive\Desktop\WEBPROJECT\index.html">SIGN UP</a></button>
</div>
<div class="login">LOG IN</div>
<div id="lform">
<input type="text" class="i" placeholder="Email Address"><br/>
<input type="password" class="i" placeholder="Password">
<button type="submit" value="LOG IN"><a href="C:\Users\gunnk\OneDrive\Desktop\WEBPROJECT\index.html">LOG IN</a></button>
</div>
<footer>
<div class="bottom">
<div class="sub1bottom">
<h2>Products</h2>
<ul>
<li><a href="laptop.html">Laptop</a></li>
<li><a href="tv.html">Television</a></li>
<li><a href="phones.html">Mobile Phones</a></li>
</ul>
</div>
<div class="sub2bottom">
<h2>About</h2>
<ul>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="">About Us</a></li>
<li><a href="">Careers</a></li>
</ul>
</div>
<div class="sub3bottom">
<h2>Social</h2>
<i class="fab fa-twitter fa-lg"></i> Twitter<br>
<i class="fab fa-facebook fa-lg"></i> Facebook<br>
<i class="fab fa-instagram fa-lg"></i> Instagram<br>
</div>
<div class="sub4bottom">
<h2>Email Us</h2>
<p>lovish@webdevco.com</p>
<p>madhav@webdevco.com</p>
<p>gunveen@webdevco.com</p>
<p>alexander@webdevco.com</p>
</div>
</div>
© 2019 LaunchBox
<p>Terms & Conditions | Conditions of Use | Privacy Policy | Accessibility Policy | Product Recalls | Credits</p>
</footer>
</body>
</html>