-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAccount.html
More file actions
85 lines (76 loc) · 3.23 KB
/
Account.html
File metadata and controls
85 lines (76 loc) · 3.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container"style="background-color:white ; " >
<div class="navbar"style="background-color:white ; " >
<div class="logo">
<a href="index.html"><img src="./images/logo.png"alt="redstore logo"style="width: 125px"/></a>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="product.html">Products</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="account.html">Account</a></li>
</ul>
</nav>
<a href="Cart.html"><img src="./images/cart.png" alt="cart" width="25px" height="25px" /></a>
</div>
</div>
<div class="account-container">
<div class="row">
<div class="col">
<img src="./images/image1.png" alt="image" />
</div>
<div class="col">
<div class="Form">
<div class="header">
<a href="login.html"><span> <h2>Login</h2></span></a>
<a href="register.html"><span> <h2
>Register</h2></span></a>
</div>
<div><input type="text" placeholder="username"></div>
<div><input type="password" placeholder="Password"></div>
<div><button>Login</button></div>
<p>Forgot Password?</p>
</div>
</div>
</div>
</div> <div class="page">
<div class="page-container">
<div class="page-row">
<div class="page-col">
<h3>Download Our App</h3>
<p >Download App for android and moblie phones</p>
<span><img src="./images/play-store.png" alt="playstore" style="width:150px ;"></span>
<span><img src="./images/app-store.png" alt="appstore" style="width: 150px; display: inline;"></span>
</div>
<div class="page-col">
<img src="./images/logo.png" alt="logo" style="width: 150px; padding-bottom: 5px;">
<p>Our Main Aim is to bring the best of all products to you. <br> Purchase from us and live a better life</p>
</div>
<div class="page-col">
<h3>Useful Links</h3>
<p>Blog Post</p>
<p>Return Policy</p>
<p>Coupons</p>
</div>
<div class="page-col">
<h3>Follow Us</h3>
<p>Facebook</p>
<P>Twitter</P>
<P>instagram</P>
</div>
</div><hr style="margin-top: 30px;">
<p style="text-align: center; font-size:20px; padding: 10px;">Copyright 2022 - Mhira_Codes</p>
</div>
</body>
</html>