-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
128 lines (125 loc) · 4.23 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Code Comp</title>
<link rel="shortcut icon" href="/assets/logo.svg" type="image/x-icon" />
<script src="//unpkg.com/es-module-shims/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"three/examples/fonts/": "./node_modules/three/examples/fonts/",
"three/examples/jsm/": "./node_modules/three/examples/jsm/",
"three": "./node_modules/three/build/three.module.js"
}
}
</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VJV5SD78TZ"></script>
<script src="/node_modules/aos/dist/aos.js"></script>
<link rel="stylesheet" href="/node_modules/aos/dist/aos.css" />
<link rel="preconnect" href="kit.fontawesome.com" />
<script src="//kit.fontawesome.com/2c36e9b7b1.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="unpkg.com" />
<link rel="preconnect" href="//fonts.googleapis.com" />
<link rel="preconnect" href="//fonts.gstatic.com" crossorigin />
<link href="//fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet" type="text/css" />
<link href="//fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet" />
<script type="module" defer src="index.js"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<nav class="pages">
<ul>
<li data-page="home">
<a href="/" class="icon">
<img src="/assets/logo.svg" role="presentation" class="logo" />
Home
</a>
</li>
<li data-page="about"><a href="/about">About</a></li>
<li data-page="pricing"><a href="/pricing">Pricing</a></li>
</ul>
</nav>
<nav class="pages">
<ul>
<li data-page="login"><a href="/login">Log In</a></li>
<li data-page="register"><a href="/register">Register</a></li>
<li data-page="profile">
<a href="/profile" class="icon">
<img alt="profile" />
Profile
</a>
</li>
</ul>
</nav>
</header>
<main>
<section id="hero">
<noscript><h1>Code Comp</h1></noscript>
<h2 class="caption">
<span id="what"></span> <span id="who"></span> <span id="where"></span>
<noscript>Please enable JavaScript to see the full site.</noscript>
</h2>
<a id="cta" href="/register">Get Started</a>
</section>
<section class="container" data-aos="fade-up">
<div class="left left-1"></div>
<div class="right right-1">
<div class="content">
<h1>Multiplayer</h1>
<p>
The multiplayer mode allows you to play not only with your friends registered in the game
but with all the people looking for random players to play with.
</p>
</div>
</div>
</section>
<section class="container" data-aos="fade-up">
<div class="right right-2">
<div class="content">
<h1>Single-Player</h1>
<p>
In single-player mode you can take classes and learn useful tips for the game that can help
you and you can also practice at the game to improve yourself.
</p>
</div>
</div>
<div class="left left-2"></div>
</section>
<section class="container" data-aos="fade-up">
<div class="left left-3"></div>
<div class="right right-1">
<div class="content">
<h1>Game modes</h1>
<p>
The game modes consist of two modes. In the first one to win you have to be the first one to
find the solution but for the second one, to win you have to be the one who wrote the most
efficient code.
</p>
</div>
</div>
</section>
</main>
<footer>
<p>
Copyright © 2022 Code Comp. Designed by <strong>Group 11</strong> for the SEG 2900 course at
uOttawa.
</p>
<ul class="socials">
<li class="Reddit">
<img src="https://img.icons8.com/tiny-color/48/000000/reddit.png" />
</li>
<li class="Instagram">
<img src="https://img.icons8.com/color/48/null/instagram-new--v1.png" />
</li>
<li class="twitter">
<img src="https://img.icons8.com/fluency/48/null/twitter.png" />
</li>
</ul>
<a href="/terms-privacy">Terms of Service & Privacy Policy</a>
</footer>
</body>
</html>