-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathIndex.html
More file actions
30 lines (26 loc) · 969 Bytes
/
Copy pathIndex.html
File metadata and controls
30 lines (26 loc) · 969 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">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="CSSsheet.css">
<title>War on Cards</title>
</head>
<body>
<h4> <center>Poke'mon (TCG) VS Yu-gi-oh! (TCG) </center> </h4>
<!-- Let's wrap enerythin up in a container! -->
<div class="container">
<div class="split left">
<h1>Pokemon (TCG)</h1>
<a href="../Pokemon/Pokemon-home.html" class="btn">Learn about Poke'mon (TCG)</a>
<!-- We'll update this button later to connect to part II of the project -->
</div>
<div class="split right">
<h1>Yu-gi-oh! (TCG)</h1>
<a href="../Yugioh/Yu-Gi-Oh!-home.html" class="btn">Learn about Yu-Gi-oh! (TCG)</a>
<!-- We'll update this button later to connect to part II of the project -->
</div>
</div>
<script src="script.js"></script>
</body>
</html>