-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (111 loc) · 4.45 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!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>MUALLAA | AHKAMBOH</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/Poetry Hub.css">
<link
href="https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Josefin+Slab:ital,wght@1,600&family=Poiret+One&family=Poppins:wght@700&display=swap"
rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Josefin+Slab:ital,wght@1,600&family=Poiret+One&family=Poppins:wght@300;700&display=swap"
rel="stylesheet">
<link rel="icon" type="image/png" href="assets/icon (2).png" />
<link
href="https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Josefin+Slab:ital,wght@1,600&family=Poiret+One&family=Poppins:wght@700&display=swap"
rel="stylesheet">
</head>
<body>
<!-- background green animation conatiners -->
<div class="firefly"></div>
<div class="firefly"></div>
<div class="firefly"></div>
<div class="firefly"></div>
<div class="firefly"></div>
<div class="firefly"></div>
<div class="firefly"></div>
<div class="firefly"></div>
<div class="firefly"></div>
<div class="firefly"></div>
<div class="firefly"></div>
<div class="firefly"></div>
<div class="firefly"></div>
<div class="firefly"></div>
<div class="firefly"></div>
<Header>
<div class="Navbar">
<div class="menu">
<ul>
<li> <a href="">About</a></li>
<li> <a href="assets/poets.html">Poets</a></li>
<li> <a href="">Home</a></li>
</ul>
</div>
<div class="logo">
<a href="#"><img src="assets/MUallaa.png" alt="Muallaa" height="50"></a>
</div>
</Header>
<footer>
<div class="submitdis">
<div class="submit">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-youtube"></a>
<a href="#" class="fa fa-instagram"></a>
</div>
</div>
</div>
</footer>
<main>
<section>
<!-- Login and sign up from -->
<div class="main">
<input type="checkbox" id="chk" aria-hidden="true">
<div class="signup">
<form>
<label for="chk" aria-hidden="true" title="Click Sign up/login">Sign up</label>
<input type="text" name="txt" placeholder="User name" required="">
<input type="email" name="email" placeholder="Email" required="">
<input type="password" name="pswd" placeholder="Password" required="">
<button title="Sign up">Sign up</button>
</form>
</div>
<div class="login">
<form class="login1">
<label for="chk" aria-hidden="true" title="Click to Login">Login</label>
<input type="email" name="email" placeholder="Email" required="">
<input type="password" name="pswd" placeholder="Password" id="myInput" required="">
<label for="Show" class="show" aria-hidden="true" title="Show Password">Show Password</label>
<input type="checkbox" class="" id="Show" onclick="myFunction()">
<button class="Forget" title="Login">Login</button>
<a class="Forget" id="fp" href="forgetpassword.html"
title="Lets forget the Password if you want">Forgot Password?</a>
</form>
</div>
</div>
</section>
</main>
<section>
<!-- picture fade animation -->
<div class="img">
<div class="slider">
</div>
</div>
<a href="https://ahkamboh.github.io/website-design-fully-responsive/assets/poets.html">
<button class="button"><span>Explore More </span></button></a>
</section>
<!-- Password vaildataion Notification code in js -->
<script>
function myFunction() {
var x = document.getElementById("myInput");
if (x.type === "password") {
x.type = "text";
} else {
x.type = "password";
}
}
</script>
</body>
</html>