-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
45 lines (43 loc) · 1.71 KB
/
Copy pathindex.php
File metadata and controls
45 lines (43 loc) · 1.71 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HighQ Home Page</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="animatecss/animate.min.css">
<script type="text/javascript" src="jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<style type="text/css">
body{
background-image: url(img/highq.jpg);
background-size: 100vw 100vh;
background-repeat: no-repeat;
box-sizing: border-box;
}
.footer{
position: absolute;
bottom: 40px;
left: 100px;
}
</style>
</head>
<body>
<div class="container">
<div class="col-md-4 col-md-offset-4" style="margin-top: 150px;">
<div class="img-holder text-center">
<img src="img/logomain.png" alt="placeholder+image" width="250" height="80">
<h4 style="text-align: right; margin-right: 15%; text-transform: uppercase; letter-spacing: 8px; font-weight: bold">quiz app</h4>
<a href="home.php" class="btn btn-block btn-lg" style="margin-top: 100px; background-color: #17eb76; color: black; border-radius: 50px">CLICK HERE TO LAUNCH</a>
</div>
</div>
<div class="col-md-8 footer">
<div class="footer-holder" style="float: left">
<img src="img/IMG-20190430-WA0023.jpg" alt="placeholder+image" width="70" height="60">
<img src="img/phubpng.png" alt="placeholder+image" width="90" height="60">
</div>
<span style="font-size: 16px; margin-left: 10px; letter-spacing: 5px">DEVELOPED BY PROGRAMAS HUB <br> IN CONJUCTION WITH NACOSS</span>
</div>
</div>
</body>
</html>