-
Notifications
You must be signed in to change notification settings - Fork 1
/
front_p.html
144 lines (119 loc) · 5.69 KB
/
front_p.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Helpers</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/full-slider.css" rel="stylesheet">
<style>
p{
color:#FFFFFF;
padding:5px;
margin-top:5px;
margin-bottom:5px;
margin-left:20px;
margin-right:20px;
}
.button {
position: relative;
background-color: #E22E2E;
border: none;
font-size: 14px;
color: #FFFFFF;
padding: 20px;
width: 200px;
text-align: center;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
border: none;
border-radius: 15px;
text-decoration: none;
overflow: hidden;
cursor: pointer;
}
.button:after {
content: "";
background: #90EE90;
display: block;
position: absolute;
padding-top: 300%;
padding-left: 350%;
margin-left: -20px!important;
margin-top: -120%;
opacity: 0;
transition: all 0.8s
}
.button:active:after {
padding: 0;
margin: 0;
opacity: 1;
transition: 0s
}
</style>
</head>
<body>
<header>
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<!-- Slide One - Set the background image for this slide in the line below -->
<div class="carousel-item active" style="background-image: url('images/background.jpg')">
<div class="carousel-caption d-none d-md-block">
<h3>The Refugees</h3>
<p>In 2016, nearly 66 million people were forced to leave their homes due to conflict and persecution – one of every 113 people on the planet. When displaced people cross international borders, they are called refugees. In 2016, the number of refugees reached an all-time high of 22 million people. 17 million of them are under the protection of the UNHCR - The UN Refugee Agency.
The Refugee Project allows for map-based exploration of refugee migrations over time. UNHCR data is complemented by original histories of the major refugee crises of the last half-century.</p>
<form action="login1.html">
<button type="submit" class="button">Login </button>
<button type="submit" class="button">Register Organization</button>
</form>
</div>
</div>
<!-- Slide Two - Set the background image for this slide in the line below -->
<div class="carousel-item" style="background-image: url('images/background2.jpg')">
<div class="carousel-caption d-none d-md-block">
<h3>The Refugees</h3>
<p>In 2016, nearly 66 million people were forced to leave their homes due to conflict and persecution – one of every 113 people on the planet. When displaced people cross international borders, they are called refugees. In 2016, the number of refugees reached an all-time high of 22 million people. 17 million of them are under the protection of the UNHCR - The UN Refugee Agency.
The Refugee Project allows for map-based exploration of refugee migrations over time. UNHCR data is complemented by original histories of the major refugee crises of the last half-century.</p>
<form action="login1.html">
<button type="submit" class="button">Login </button>
<button type="submit" class="button">Register Organization</button>
</form>
</div>
</div>
<!-- Slide Three - Set the background image for this slide in the line below -->
<div class="carousel-item" style="background-image: url('images/background3.jpg')">
<div class="carousel-caption d-none d-md-block">
<h3>The Refugees</h3>
<p>In 2016, nearly 66 million people were forced to leave their homes due to conflict and persecution – one of every 113 people on the planet. When displaced people cross international borders, they are called refugees. In 2016, the number of refugees reached an all-time high of 22 million people. 17 million of them are under the protection of the UNHCR - The UN Refugee Agency.
The Refugee Project allows for map-based exploration of refugee migrations over time. UNHCR data is complemented by original histories of the major refugee crises of the last half-century.</p>
<form action="login1.html">
<button type="submit" class="button">Login </button>
<button type="submit" class="button">Register Organization</button>
</form>
</div>
</div>z
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</header>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>