-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (23 loc) · 986 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Temperature Converter</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<div class="converter">
<h1><i class="fas fa-thermometer-half"></i> Temperature Converter</h1>
<label for="celsius">Enter Temperature in Celsius:</label>
<input type="number" id="celsius">
<button onclick="convertTemperature()">Convert <i class="fas fa-arrow-right"></i></button>
<p id="result"><i id="temperature-icon" class="fas fa-temperature-high"></i> <span id="conversion-result"></span></p>
<div class="icons">
<i id="weather-icon" class="fas fa-sun"></i>
</div>
</div>
<script src="script.js"></script>
</body>
</html>