-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (73 loc) · 2.65 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
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<title>Arduino Statistics</title>
<meta charset='UTF-8'>
<link rel='stylesheet' href='css/style.css' type='text/css'/>
<link rel='stylesheet' href='css/styleIndex.css' type='text/css'/>
</head>
<body>
<header id='headArea'>
<nav id='menu'>
<div id='showMenu'>
<img src='img/menu.svg'
title='Show menu'
alt='Image for show the menu'
id='showMenuIMG'
/>
</div>
<div id='menuContent'>
<ul id='menuArea'>
<li class='menuLink'><p><a href='index.html'>Home</a></p></li>
<li class='menuLink'><a href='graph-start.html'>New Graphic</a></li>
<li class='menuLink'><a href='learn.html'>Learn</a></li>
<li class='menuLink'><a href='documentation.html'>Documents</a></li>
</ul>
</div>
</nav>
</header>
<main id='welcome'>
<div id='logo'>
<img src='img/logo-image.svg'
title='Project Logo - gART_DATA'
alt='Logo of the Project gArt_DATA'
id='logoIMG'
/>
</div>
<section id='welcomeHeader'>
<h4 class='welcomeText'>Real Time Graphics With Arduino</h4>
</section>
<article id='welcomeStart'>
<section id='mainContent'>
<p class='descriptionText'>Chose a theme</p>
<ul class='choiceArea'>
<li class='choice'>
<figure class='welcome-choice'>
<a href='graph-start.html' class='choiceLink'>
<img src='img/graph.svg' class='choiceView' alt='Start New Graphic' title='Image with link to create new graphic'/>
</a>
<figcaption class='choiceDescription'>New Graphic</figcaption>
</figure>
</li>
<li class='choice'>
<figure class='welcome-choice'>
<a href='documentation.html' class='choiceLink'>
<img src='img/documentation.svg' class='choiceView' alt='View Documentation' title='Image with link to view documentation'/>
</a>
<figcaption class='choiceDescription'>Documentation</figcaption>
</figure>
</li>
<li class='choice'>
<a href='#extendContent' id='controlExtend'>+</a>
</li>
</ul>
</section>
<section id='extendContent'>
</section>
</article>
</main>
<footer id='footArea'>
<p>TEXTO GENÉRICO DE RODAPÉ</p>
</footer>
</body>
</html>