-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (73 loc) · 2.76 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<title>SWE XYZ</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="shortcut icon" href="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d6/Solid_orange.svg/1024px-Solid_orange.svg.png"/>
<style>
#loading {
width: 100%;
height: 100%;
top: 0px;
left: 0px;
position: fixed;
display: block;
z-index: 99;
opacity: 1;
background-color: #fff;
}
#loading-image {
display: block;
margin-top: 100px;
margin-left: auto;
margin-right: auto;
width: 50%;
}
</style>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/all.min.css">
</head>
<body>
<!-- LOADING IMAGE -->
<div class="mt-5" id="loading">
<img id="loading-image" src="assets/loading.gif" style="max-height: 200px; max-width: 200px;" />
</div>
<!-- NAV BAR -->
<nav class="nav justify-content-center bg-light"> <!-- sticky-top -->
<a class="nav-link" href="#">Home</a>
<a class="nav-link" href="#">About</a>
<a class="nav-link" href="pages/contact.html">Contact</a>
</nav>
<br>
<div class="container">
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-4 font-weight-bold text-center">Welcome to Software Engineering XYZ</h1>
<p class="lead text-center">Here you will find tutorials about new and exciting technologies!</p>
</div>
</div>
<div class="text-center">
<img src="./assets/comingsoon.gif" style="text-align: center;" alt="bootstrap logo">
</div>
</div>
<br>
<!-- FOOTER -->
<nav class="navbar fixed-bottom justify-content-center bg-light">
<a class="nav-link" href="#" target="_blank"><i class="fab fa-facebook-square"></i></a>
<a class="nav-link" href="#" target="_blank"><i class="fab fa-instagram-square"></i></a>
<a class="nav-link" href="#"><i class="fas fa-envelope"></i></a>
</nav>
<!-- LOADING PAGE ICON -->
<script>
window.onload = function(){ document.getElementById("loading").style.display = "none" }
</script>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="js/jquery.3.5.1.js"></script>
<script src="https://unpkg.com/@popperjs/core@2"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>