-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (49 loc) · 1.83 KB
/
index.html
File metadata and controls
51 lines (49 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Main Page</title>
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header class="stickyHeader">
<img id="" src="./img/logo.png" alt="Logo">
<h1>Draw.io</h1>
<nav>
<ul>
<li><a href="./about.html">About Us</a></li>
<li><a href="./nature.html">Saved Images</a></li>
<li><a href="./freehand.html">Draw Freehand Images</a></li>
</ul>
</nav>
</header>
<main class="scroll" id="index">
<section id="drawing_pad">
<h2>How to play:</h2>
<p>1. Click on a starting picture.</p>
<p>2. Click somewhere to draw Line with 2 points.</p>
<p>3. Draw what you want to. The most important thing is to have fun.</p>
<canvas id="canvas" width="640" height="640"></canvas>
<ul>
<li><img src="./img/tree1.png" alt="Tree 1" id="img1"></li>
<!--<li><img src="https://via.placeholder.com/320/555" alt="Image 2" id="img2"></li>
<li><img src="https://via.placeholder.com/320/555" alt="Image 3" id="img3"></li> -->
</ul>
<ul>
<li><a href="" id="reset_button">Reset</a></li>
<li><a href="" id="save_button">Save</a></li>
</ul>
</section>
</main>
<footer>
© Project J, 2019
<img id="" src="./img/logo.png" alt="Logo">
</footer>
<script src="./js/data.js"></script>
<script src="./js/draw.js"></script>
<script src="./js/app.js"></script>
</body>
</html>