-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 1001 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 1001 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>7 квадратов</title>
<link rel="stylesheet" type="text/css" href="normalize.css">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<header>
<h1>Семь квадратов</h1>
<p>Проведите линии между точками так, чтобы получилось семь квадратов.
Квадраты могут пересекаться и варьироваться в размере, но каждая точка должна использоваться только один раз.</p>
</header>
<main>
<section id="puzzle">
<img id="back" width="640" height="640" src="/res/back.jpg">
<canvas id="canvas" width="600" height="600"></canvas>
</section>
</main>
<script type="text/javascript" src="script.js"></script>
</body>
</html>