-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathempty-page.html
140 lines (113 loc) · 6.09 KB
/
empty-page.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>To Be Updated</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito:light">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css"
integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" href="Media/redaxe-glasses-icon.png">
<script src="header-display-functions.js"></script>
</head>
<body>
<!-- Big Title -->
<a href="index.html" class="jumbotron jumbotron-fluid text-center header-title">
<div class="container-fluid header-title">
<div class="row">
<div class="col-md-3">
<img src="Media/redaxe-glasses-icon.png" class="img-fluid float-md-left" alt="Logo"
style="width: 300px;">
</div>
<div class="col-md-6 d-flex flex-column justify-content-center align-items-center">
<!-- Text for screen size extra large and above -->
<h1 class="d-none d-xl-block display-2">Autochess Advisor</h1>
<h3 class="d-none d-xl-block header-subtitle"></h3>
<!-- Text for screen size between large and extra large -->
<h1 class="d-none d-lg-block d-xl-none display-3">Autochess Advisor</h1>
<h4 class="d-none d-lg-block d-xl-none header-subtitle"></h4>
<!-- Text for screen size below large -->
<h1 class="d-lg-none display-4">Autochess Advisor</h1>
<!-- Text for screen below medium -->
<h5 class="d-md-none header-subtitle"></h5>
</div>
<!-- Text on right side-->
<div class="col-md-3 d-flex flex-column justify-content-center align-items-center">
<!-- Unique Name Display between screen medium and large -->
<h4 class="d-none d-md-block d-lg-none header-subtitle"></h4>
<!-- For XL screens and above -->
<h3 class="d-none d-xl-block header-subtitle-2"></h3>
<!-- For screens between large and XL -->
<h4 class="d-none d-lg-block d-xl-none header-subtitle-2"></h4>
<!-- For screen below large -->
<h5 class="d-lg-none text-center header-subtitle-2"></h5>
</div>
</div>
</div>
</a>
<!-- A horizontal navbar that becomes vertical on small screens -->
<nav class="navbar navbar-expand-sm sticky-top navbar-dark">
<!-- Brand -->
<a class="navbar-brand" href="index.html">
<img src="Media/redaxe-glasses-icon.png" alt="Logo-Mini" style="width: 40px;">
</a>
<!-- Collapsible Navbar Button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Collapsible Navbar -->
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<!-- Links -->
<ul class="navbar-nav nav-fill w-100 align-items-start">
<li class="nav-item">
<a class="nav-link" href="empty-page.html"><i class="fas fa-chess"></i> Chess Pieces</a>
</li>
<li class="nav-item">
<a class="nav-link" href="empty-page.html"><i class="fab fa-react"></i> Synergies</a>
</li>
<li class="nav-item">
<a class="nav-link" href="empty-page.html"><i class="fas fa-chess-board"></i> Formations</a>
</li>
<li class="nav-item">
<a class="nav-link" href="comments.html"><i class="fas fa-comment-alt"></i> Feedback</a>
</li>
</ul>
</div>
</nav>
<!-- Apology Message -->
<div class="row color-band-1">
<div class="col-7 d-flex flex-column justify-content-center align-items-start section-content">
<h3 class="display-4 d-none d-lg-flex section-title">We are Building</h3>
<h1 class="d-none d-md-flex d-lg-none section-title">We are Building</h1>
<h3 class="d-flex d-md-none section-title">We are Building</h3>
<p>
You have landed on this page because you have tried to go to a page that has not been created yet.
Sorry for that! <br>
We are hard at work to build this website up so we appreciate your understanding and patience. <br>
In the meantime, check out what we have built (like
<a href="grimtouch-news.html">this page</a> or <a href="comments.html">this page</a>)!
</p>
<a href="index.html" class="btn btn-primary align-self-end" role="button">Back to <i
class="fas fa-home"></i> Home</a>
</div>
<div class="col-5 d-flex justify-content-start align-items-center">
<img class="img-fluid" src="Media/alchemist.png" alt="Venomancer">
</div>
</div>
<!-- Footer -->
<footer>
<div class="row bg-dark text-light">
<div class="col-1"></div>
<div class="col footer-content">
<p>2019. By Thinh T. Diep, for RMIT COSC 2430 - Web Programming - Assignment 1</p>
</div>
</div>
</footer>
</body>
</html>