-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
62 lines (56 loc) · 1.91 KB
/
home.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="text.css">
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="https://font.google.com/css2?family=Noto+Sans+JP&display=swap">
<!-- font awesome icons -->
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
</head>
<body>
<header>
<h2 class="logo">LOGO</h2>
<div class="navigation">
<a href="Home">Home</a>
<a href="About">About</a>
<a href="market.html">Services</a>
<a href="Contant.html">Contact</a>
<button class="btn_login">Login</button>
</div>
</header>
<div class="wrapper">
<div class="form-box Login">
<h2>Login</h2>
<form action="#">
<div class="details">
<label for="Email">Email</label>
<input type="email" name="Email" id="Email">
<span class="fas fa-email"><ion-icon name="mail-outline"></ion-icon></span>
<br>
</div>
<div class="details">
<label for="password">password</label><br>
<input type="password" name="password" id="password">
<span class="fas fa-lock"><ion-icon name="lock-closed-outline"></ion-icon></span><br>
</div>
<div class="remember-forgot">
<label>
<input type="checkbox" name="remember">Remember me
</label>
<a href="#">Forgot Password?</a>
</div>
<button type="submit" class="btn">Login</button>
<div class="login-register">
<p>Already have an account?<a href="register.html"class="register-link">Register</a></p>
</div>
</form>
</div>
</div>
<script type="text/javascript"src="script.js">
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
</script>
</body>
</html>