-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (29 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>CodePen - Conversor de temperatura - ID3</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<div class="container">
<h1 class="page-title">
Conversor de temperatura
</h1>
<p class="page-subtitle">
Descubra as diferentes temperaturas a partir do celsius
</p>
<img src="https://www.alura.com.br/assets/img/imersoes/dev-2021/logo-imersao-conversor-de-moedas.svg" class="page-logo" alt=""><br><br>
<label for="moeda">Ensira a temperatura em celsius</label><br>
<input type="number" id="valor" size="2" /><br>
<button type="submit" onclick="ConverterParaKelvin()">Converter para kelvin</button>
<button type="submit" onclick="ConverterParaFahrenheit()">Converter para fahrenheit</button>
<h2 id="valorConvertido"></h2>
</div>
<a href="https://alura.com.br/" target="_blank">
<img src="https://www.alura.com.br/assets/img/home/alura-logo.svg" alt="" class="alura-logo">
<!-- partial -->
<script src="./script.js"></script>
</body>
</html>