-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (71 loc) · 2.71 KB
/
index.html
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Anna's canvas</title>
<link rel="stylesheet" href="styleRwd.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@48,400,1,0"
/>
</head>
<body>
<nav id="nav">
<button id="logo">
<img src="./images/logo.png" alt="LOGO" />
<!-- <a href='https://pl.freepik.com/wektory/streszczenie'>Streszczenie plik wektorowy utworzone przez vectorjuice - pl.freepik.com</a> -->
</button>
<button id="new-image-btn" class="tablink">Draw new image!</button>
<button id="previous-project-btn" class="tablink">Previous projects</button>
<button id="me-btn" class="tablink">About me</button>
</nav>
<main>
<container id="draw-page" class="page-content">
<section id="rendered-elements" class="single-section left">
<div class="colors">
<div id="generated-colors"></div>
<button id="color-button" class="btn">Generate new palette</button>
</div>
<div class="emojis">
<a id="previous" class="e-btn" title="Previous emojis">‹</a>
<span id="generated-emojis"></span>
<a id="next" class="e-btn" title="Next emojis">›</a>
<button id="emojis-button" class="btn" title="Back to first emojis">
Back to first emojis
</button>
</div>
</section>
<canvas id="canvas" width="300" height="350" class="single-section"
>The canva is error</canvas
>
<section id="buttons" class="single-section right">
<button
id="clear-button"
class="btn"
title="Deleted projects are displayed in PREVIOUS PROJECTS section"
>
Clear canvas
</button>
<a id="save-button" class="btn">Save as jpeg</a>
</section>
</container>
<container id="previous-projects-page" class="page-content">
<section id="previous-project-display">
<h2 class="show">You haven't got projects yet. Draw something!</h2>
</section>
</container>
<container id="about-me-page" class="page-content">
<section id="about-me">
<h2 class="text">Hello!</h2>
<p class="text">
My name is Ania, I like to do creative and
</p>
<img src="./images/sitting-person.png" alt="My image" />
</section>
</container>
</main>
<script src="main.js"></script>
</body>
</html>