-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfahrenheit_hesaplama.html
46 lines (36 loc) · 1.86 KB
/
fahrenheit_hesaplama.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
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<title>Fahrenheit Hesaplama</title>
</head>
<body class="h-100 d-flex flex-column" style="background-color: #6FAAFF;">
<div class="container my-5">
<h1 style="text-align: center; color: #3C3F44;">Fahrenheit Hesaplama</h1>
<hr>
<form>
<div class="mb-3 w-25" style="position: relative; margin: auto; top: 250px;">
<h3 class="title" style="font-size: 22px;">Celcius</h3>
<input type="number" class="form-control" id="birinci_deger">
</div>
<div class="form-row" >
<button type="button" class="btn btn-outline-dark " style="position: relative; left:720px; top: 280px;" onclick="hesapla()">Hesapla</button>
</div>
<div class="form-row mb-3">
<h3 class="title" style="font-size: 22px; position: relative; margin: auto; left: 485px; top: 300px;">Fahrenheit</h3>
<h3 id="Alan" class="text-white mt-1" style="position: relative; left: 485px; top: 310px; width: 235px;text-align: center; border-radius: 5px; background-color: #3C3F44;;"></h3>
</div>
</form>
</div>
<script src="fahrenheit_hesaplama.js"></script>
<footer class="py-5 bg-dark text-white mt-auto">
<div class="container text-center">
<span>All Rights Reserved. bySalihyavuz @2025</span>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
</body>
</html>