-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (62 loc) · 1.92 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
<!--
Autor: Jorge Marcelo
Data de Criação: 08/08/2023
Github: https://github.com/Jorge-Marcelo
Linkedin: https://www.linkedin.com/in/jorge-marcelo-067a5017b/
Instagram: https://www.instagram.com/10_stronger/
Threads: https://www.threads.net/@10_stronger
-->
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Conversor de Temperatura</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='assets/css/style.css'>
</head>
<body>
<main>
<!--Formulario-->
<form class="container">
<h1>Conversor de Temperatura</h1>
<label for="celsius">Celsius:</label>
<input type="text" id="celsius" step="0.01">
<label for="fahrenheit">Fahrenheit:</label>
<input type="text" id="fahrenheit" step="0.01">
<button id="btn" class="changeColor">Mudar cor</button>
<h1>Made by: Jorge Marcelo</h1>
<!--Rodape com as redes sociais-->
<footer>
<table>
<tr>
<td><button class="github" id="github">
<img src="assets/img/github.png" class="igm-github">
<span>Github</span></button></td>
<td><button class="linkedin" id="linkedin">
<img src="assets/img/linkedin.png" class="igm-linkedin">
<span>Linkedin</span></button></td>
<td><button class="instagram" id="instagram">
<img src="assets/img/insta.png">
<span>Instagram</span></button></td>
<td><button class="github" id="threads">
<img src="assets/img/threads.png" class="igm-threads">
<span>Threads</span></button></td>
</tr>
</table>
</footer>
<!--Container das animações das esmeraldas-->
<section>
<picture class="esmeralda-1"></picture>
<picture class="esmeralda-2"></picture>
<picture class="esmeralda-3"></picture>
<picture class="esmeralda-4"></picture>
<picture class="esmeralda-5"></picture>
<picture class="esmeralda-6"></picture>
<picture class="esmeralda-7"></picture>
</section>
</form>
</main>
<script src='assets/js/script.js'></script>
</body>
</html>