-
Notifications
You must be signed in to change notification settings - Fork 0
/
t1.html
24 lines (23 loc) · 950 Bytes
/
t1.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="t1.css">
</head>
<body>
<h1>MVP 2</h1>
<p>Write your card here</p>
<label>Front: </label><input type="text" id="front">
<label>Back: </label><input type="text" id="back">
<br>
<button id="make-game">Make Game</button>
<div id="t1-out">
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.js" integrity="sha512-CX7sDOp7UTAq+i1FYIlf9Uo27x4os+kGeoT7rgwvY+4dmjqV0IuE/Bl5hVsjnQPQiTOhAX1O2r2j5bjsFBvv/A==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="t1.js" async defer></script>
</body>
</html>