-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (48 loc) · 1.84 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
<!DOCTYPE html>
<html lang="pt-br" >
<head>
<meta charset="UTF-8">
<title>Conversor de Temperatura| Fran Pastori</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<h1 class="page-title">
Conversor de Temperatura
</h1>
<img src="https://www.alura.com.br/assets/img/imersoes/dev-2021/logo-imersao-conversor-de-moedas.svg" class="page-logo" alt=""><br><br>
<section class="areadeentrada">
<label for="moeda">Insira o valor em Celcius</label><br>
<input type="number" id="valor" size="2" /><br>
</section>
<section class="areadeconversao">
<div class="container">
<p class="page-subtitle">
Converta as temperaturas de Celcius para fahrenheit
</p>
<img class="imagemConversor" src= "img/fahrenheit.png">
<button type="submit" onclick="ConverterFahrenheit()">Converter</button>
<h2 id="valorConvertidoFahrenheit"></h2>
</div>
<div class="container">
<p class="page-subtitle">
Converta as temperaturas de Celcius para Kelvin
</p>
<img class="imagemConversor" src="img/kelvin.png">
<button type="submit" onclick="ConverterKelvin()">Converter</button>
<h2 id="valorConvertidokelvin"></h2>
</div>
</section>
<div class="alura-logo">
<a href="https://alura.com.br/" target="_blank">
<img src="https://www.alura.com.br/assets/img/home/alura-logo.svg" alt="" >
<img class="redeSocial" src="img/logoFran.png" alt="" class="logo-Fran">
<a href="https://www.instagram.com/franpastori/" target="_blank">
<img class="redeSocial" src="img/logoInstagram.png" alt="" class="Meu Instagram">
<a href="https://www.instagram.com/franpastori/" target="_blank">
<img class="redeSocial" src="img/iconLinkedin.png" alt="" class="Meu Linkedin">
</div>
<!-- partial -->
</body>
<script type="text/javascript" src="script.js"></script>
</html>