forked from code-differently/Temp-Converter-Lab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (31 loc) · 990 Bytes
/
index.html
File metadata and controls
38 lines (31 loc) · 990 Bytes
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
<!DOCTYPE html>
<html lang="en">
<link rel="stylesheet" href="style.css">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Temp Scale Converter</title>
</head>
<body>
<main>
<header>
<h1><strong>Temperature Scale Converter</strong></h1>
</header>
<section class="value">
<p>Value</p>
</section>
<section class="fahrenheit">
<h1>Fahrenheit</h1>
<input type="number" name="value" id="value" class="input" placeholder="Fahrenheit Number">
<button onclick="myfunction()" style=background-color:lightblue>Calculate</button>
</section>
<section class="celciusName">
<p><strong>Celsius</strong></p>
</section>
<section class="celcius">
<p id="celciusformula"></p>
</section>
</main>
<script src="function.js"></script>
</body>
</html>