-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.12 KB
/
index.html
File metadata and controls
37 lines (37 loc) · 1.12 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>JS Tutorial</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<div id="logo">
<a href="index.html"><img src="img/jsTutorialLogo.png" alt="logo"></a>
</div>
</header>
<main id="index-main">
<div class="selectors">
<a href="game.html">
<div class="selector">
<p class="icon">
<i class="fa fa-play" aria-hidden="true"></i>
</p>
<p class="icon-text">Play Game</p>
</div>
</a>
<a href="tutorial.html">
<div class="selector">
<p class="icon">
<i class="fa fa-code" aria-hidden="true"></i>
</p>
<p class="icon-text">Learn to code</p>
</div>
</a>
</div>
</main>
</body>
</html>