forked from Xiao0909/final
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmemory.html
More file actions
41 lines (34 loc) · 1.37 KB
/
memory.html
File metadata and controls
41 lines (34 loc) · 1.37 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
38
39
40
41
<!DOCTYPE html>
<head>
<title>Pokemon Memory Game</title>
<link rel="stylesheet" href="resources/css/memory.css"></link>
<script src="resources/js/memory.js"></script>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
</head>
<body style="background-color: #FDFCDC;">
<div class="top">
<div class="row">
<div class="col-sm-3"></div>
<div class="col-sm-6">
<h1 class="col-sm-8" style="text-align: center;">Pokemon Memory Game</h1>
</div>
<div class="col-sm-3"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-3"></div>
<div class="col-sm-6" align="center">
<div id="link">
<button class="btn btn-info btn-lg"><a href="/RockPaperScissors/index.html" style="color: whte;">next</a></button>
</div>
<h3 style="font-weight: 900;">Scores:<span id="result"></span></h3>
<br>
<div class="grid">
</div>
</div>
<div class="col-sm-3"></div>
</div>
</div>
</body>