-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 1.63 KB
/
index.html
File metadata and controls
44 lines (44 loc) · 1.63 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
<!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="style.css">
<title>Login</title>
</head>
<body>
<section>
<div class="leaves">
<div class="set">
<div><img src="img/leaf_01.png" alt="Leaf 01"></div>
<div><img src="img/leaf_02.png" alt="Leaf 02"></div>
<div><img src="img/leaf_03.png" alt="Leaf 03"></div>
<div><img src="img/leaf_04.png" alt="Leaf 04"></div>
<div><img src="img/leaf_01.png" alt="Leaf 01"></div>
<div><img src="img/leaf_02.png" alt="Leaf 02"></div>
<div><img src="img/leaf_03.png" alt="Leaf 03"></div>
<div><img src="img/leaf_04.png" alt="Leaf 04"></div>
</div>
</div>
<img src="img/bg.jpg" alt="Background Image" class="bg">
<img src="img/girl.png" alt="Girl Image" class="girl">
<img src="img/trees.png" alt="Trees Image" class="trees">
<div class="login">
<h2>Sign in</h2>
<div class="inputBox">
<input type="text" placeholder="Username">
</div>
<div class="inputBox">
<input type="password" placeholder="Password">
</div>
<div class="inputBox">
<input type="submit" value="Login" id="btn">
</div>
<div class="group">
<a href="#">Forget Password</a>
<a href="#">Sign up</a>
</div>
</div>
</section>
</body>
</html>