-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboxmodel.html
More file actions
44 lines (35 loc) · 806 Bytes
/
boxmodel.html
File metadata and controls
44 lines (35 loc) · 806 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<title> Box Model Site </title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial- scale=1">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<style type="text/css">
/* For debugging */
</style>
</head>
<body>
<h1> Tic Tac Toe </h1>
<table>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<script src="js/script.js"></script>
</body>
</html>