-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome.html
33 lines (29 loc) · 1.28 KB
/
welcome.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
<html>
<title>TrendyBucket - Welcome</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body,h1 {font-family: "Raleway", sans-serif}
body, html {height: 100%}
.bgimg {
background-image: url('img/banner.jpg');
min-height: 100%;
background-size: cover;
}
</style>
<body>
<div class="bgimg w3-display-container w3-animate-opacity w3-text-white">
<div class="w3-display-topleft w3-padding-large w3-xlarge">
<div class="offcanvas__logo">
<a href="./index.html"><img src="img/logo1.png" alt=""></a>
</div>
</div>
<p class="w3-left"style="margin-top: 300px;margin-left: 400px;"><a href="login.html" class="w3-button w3-black w3-round w3-padding-large w3-large">
<i class="fa fa-arrow-left"></i>  Sign in</a></p>
<p class="w3-right"style="margin-top: 300px;margin-right: 400px;"><a href="register.php" class="w3-button w3-black w3-round w3-padding-large w3-large">Sign up  <i class="fa fa-arrow-right"></i></a></p>
</div>
</body>
</html>