-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 962 Bytes
/
index.html
File metadata and controls
30 lines (28 loc) · 962 Bytes
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>Game of MAMS</title>
<link rel="stylesheet" type="text/css" href="stylesH.css">
<link href="https://fonts.googleapis.com/css?family=Asap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="favicon.png" type="image/icon" sizes="16x16">
</head>
<body>
<!--The Titles-->
<div id="homeTitle">
<p id="GO">Game of</p>
<img id="logo" src="logo.png">
<br>
<div id="langDiv">
<a id="lang" href="index-en.html"><button class="titleBut">English</button></a>
<a id="lang" href="index-es.html"><button class="titleBut">Español</button></a>
<a id="lang" href="index-fr.html"><button class="titleBut">Français</button></a>
</div>
</div>
<footer>
<p>Hand-coded by Derek Ng</p>
<p>© 2019</p>
</footer>
</body>
</html>