-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (36 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Temperature Converter</title>
</head>
<body>
<div class="container">
<div class="row justify-content-md-center">
<div class="col-md-6 text-center">
<h1>Temperature Converter</h1>
<div id="celsius">
<input type="number" class="form-control form-control-lg form-padding" id="input-celsius" placeholder="celsius">
</div>
<div id="fahrenheit">
<input type="number" class="form-control form-control-lg form-padding" id="input-fahrenheit" placeholder="fahrenheit">
</div>
<div id="kelvin">
<input type="number" class="form-control form-control-lg form-padding" id="input-kelvin" placeholder="kelvin">
</div>
</div>
</div>
<footer>
<p>By Akrati Verma.</p>
<p><a href="https://github.com/blindaks" target="_blank"><img class="icons" src="https://res.cloudinary.com/itsellej/image/upload/v1533400136/rock-paper-scissors/github-icon.png" alt="Github icon"></a>
<a href="https://www.instagram.com/_akrati_23/?hl=en" target="_blank"><img src="/img.png" height="25px" alt="Instagram"></a>
</p>
</footer>
</div>
<script src="main.js" charset="utf-8"></script>
</body>
</html>