-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjack.html
More file actions
21 lines (20 loc) · 714 Bytes
/
jack.html
File metadata and controls
21 lines (20 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<title>Jack</title>
<meta charset="utf-8">
<link href="/courses/freecamp/javascript/projects/Jack/jack.css" rel="stylesheet">
</head>
<body>
<div id="parent">
<h1>Black Jacker</h1>
<p id="messagel">Wanna Play?</p>
<p id="cardel">Cards: </p>
<p>Sum:<span id="sum"></span></p>
<button id="btn" onclick=resulter()>START</button>
<button id="new" onclick=newCard()>New Card</button>
<button onclick=reloader()>Reload</button>
</div>
<script src="/courses/freecamp/javascript/projects/Jack/jack.js"> </script>
</body>
</html>