-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (89 loc) · 3.68 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
85
86
87
88
89
90
91
92
93
94
95
<!-- mode:web coding:utf-8-unix -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>The Indie Quest</title>
<link rel="stylesheet" href="res/css/bs/bootstrap.css">
<link rel="stylesheet" type="text/css" href="./style.css">
<link rel="icon" href="./res/img/IQ_Logo_White_Roof_Outlined.svg">
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light px-2">
<a class="navbar-brand" href="#"><img id="iq-navbar-logo" src="./res/img/IQ_Logo_Black_Simple.svg" alt="The Indie Quest Logo" title="The Indie Quest Logo"/></a>
<button class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbar-navs"
aria-controls="navbar-navs"
aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbar-navs">
<ul class="navbar-nav mb-2 mb-lg-0 ms-auto">
<li class="nav-item">
<a class="nav-link active" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="curriculum.html">Curriculum</a>
</li>
<li class="nav-item">
<a class="nav-link" href="findus.html">Find us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="apply.html">Apply</a>
</li>
</ul>
</div>
</nav>
<!-- Body -->
<div class="container-lg bg-light my-4 pb-4 px-4 rounded">
<!-- Logo and title for big screens -->
<div class="row d-none d-lg-flex">
<div class="col w-50 my-auto ms-5">
<h1 class="iq-home-title-lg">THE</h1>
<h1 class="iq-home-title-lg">INDIE</h1>
<h1 class="iq-home-title-lg">QUEST</h1>
</div>
<div class="col w-50 my-auto">
<img src="./res/img/IQ_Logo_Black_Simple.svg" alt="The Indie Quest Logo" title="The Indie Quest Logo" class="w-100">
</div>
</div>
<!-- Logo and title for small screens -->
<div class="d-lg-none w-50 m-auto text-center">
<img src="./res/img/IQ_Logo_Black_Simple.svg" alt="The Indie Quest Logo" title="The Indie Quest Logo" class="w-100">
<h1>THE INDIE QUEST</h1>
</div>
<!-- Cool video -->
<div class="m-auto mb-4 w-50 mw-75">
<div class="video-container">
<iframe
class="video rounded"
src="https://www.youtube-nocookie.com/embed/fi1YRh37xsc"
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
aria-label="YouTube video introducing The Indie Quest"
></iframe>
</div>
</div>
<h2 class="display-5">A school for indie game development</h2>
<p>The program starts August 16th and you can apply up until June 15th.</p>
<h2 class="display-5">Learn multiple skill sets</h2>
<p>Once you're done here, you'll be ready to start your own indie studio or continue studying down the path you felt suited you the best.</p>
<h2 class="display-5">Two games in one year</h2>
<p>Time is precious, and with our program we plan to make the most out of yours. It's going to be a tough but rewarding journey.</p>
<h2 class="display-5">Learn from the best</h2>
<p>You're sharing the house with awesome game developers from all over the world. We're a big team that has each other's backs.</p>
<h2 class="display-5">Personal responsibility</h2>
<p>There's no tests or teachers hunting you. If you're going to succeed, you're going to want to study hard.</p>
</div>
<script src=res/js/bs/bootstrap.bundle.js></script>
</body>
</html>