forked from shwethabm/raeofhope
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtry.html
More file actions
106 lines (100 loc) · 2.57 KB
/
try.html
File metadata and controls
106 lines (100 loc) · 2.57 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
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<style>
.h{
text-align: center;
color: crimson;
font-size: 60px;
}
#i{
height: 200px;
position: relative;
top: -80px;
left: 300px;
}
.s{
position: relative;
left: 500px;
top: -190px;
font-size: 30px;
color: deeppink;
}
.hope{
height: 400px;
width: 100%;
position: relative;
top: -160px;
}
.for{
width: 60%;
background-color: transparent;
padding-left: 20px;
}
.l{
font-size: 30px;
padding-left: 90px;
}
#box{
background-image: url('cloud2.jpg');
background-repeat: no-repeat;
background-size: 100%;
height: 350px;
width: 60%;
position: relative;
top: -140px;
left:160px;
}
</style><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
</head>
<body>
<div class="row">
<div class="col"></div>
<div class="col"></div>
<div class="col"></div>
</div>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Active</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#">Disabled</a>
</li>
</ul>
</nav>
<h1 class="h">RAE OF HOPE</h1>
<img src="smile.jpg" class="rounded-circle" id="i">
<p class="s">a step towards changing the world!</p>
<img src="dove2.jpg" class="hope">
<div id="box" class="rounded">
<form action="/action_page.php" class="for">
<p class="l">LOGIN</p>
<div class="form-group">
<label for="email">Username:</label>
<input type="email" class="form-control" id="email">
</div>
<div class="form-group">
<label for="pwd">Password:</label>
<input type="password" class="form-control" id="pwd">
</div>
<div class="form-group form-check">
<label class="form-check-label">
<input class="form-check-input" type="checkbox"> Remember me
</label>
</div>
<button type="submit" class="btn btn-primary">login</button>
</form></div>
</body>
</html>