-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpart1.html
More file actions
55 lines (48 loc) · 1.26 KB
/
part1.html
File metadata and controls
55 lines (48 loc) · 1.26 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!doctype html>
<html>
<head>
<title> matching game</title>
<link href="https://fonts.googleapis.com/css?family=Barrio|Raleway" rel="stylesheet">
<style >
.div{
position: absolute;
width: 500px;
height: 500px;
}
#rightside {
left: 500px;
border-left: 3px solid black; }
body{
background: #217ac0;
}
.container {
border-style:solid;
width: 1000px;
height: 520px;
}
h1{
font-family: 'Barrio', cursive;
}
p{
font-family: 'Raleway', sans-serif;
}
#h2{
position: absolute;
top:70px;
left:1100px;
font-size: 3em;
color:#f95759;
}
</style>
</head>
<body onload="start()">
<h1>Matching game</h1>
<p>Click on the extra smiling face on the left.</p>
<div class="container">
<div id="leftside" class="div"></div>
<div id="rightside" class="div"></div>
</div>
<h2 id="h2">Score:</h2>
<script src="script.js"></script>
</body>
</html>