-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 970 Bytes
/
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<title>Conversor de Temperatura</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="author" content="Jodecir Neto">
<meta name="description" content="Conversor de temperatura.">
<meta name="keywords" content="portfolio, dev, web">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="icon/favicon.png">
<link rel="stylesheet" href="css/style.css">
<script src="js/script.js" defer></script>
</head>
<body>
<div class="container">
<h1 class="page-title">Conversor de Temperatura</h1>
<p class="page-subtitle">
Coverta aqui uma medida para outra para descobrir os graus!
</p>
<input placeholder="Valor em C°" value="" type="number" id="c">
<button onclick="ConvertInput()">Converter</button>
<input placeholder="Valor em F°" value="" type="number" id="f">
</div>
</body>
</html>