-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
62 lines (60 loc) · 2.91 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
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<title>Decimal to Binary Converter With Digital Clock</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="Biodata" content="Decimal to Binary Converter With Digital Clock" />
<meta name="Roman Hossain Shaon" content="[email protected]">
<meta name="designer, devepoer, programmer" content="Roman Hossain Shaon">
<meta name="reply-to" content="[email protected]">
<meta name="owner" content="Roman Hossain Shaon">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Decimal to Binary Converter START -->
<section>
<div class="bg-contact2" style="background-image: url('image/IMG.jpeg');">
<div class="container-contact2">
<div class="wrap-contact2">
<form class="contact2-form validate-form">
<span class="contact2-form-title">
<h1>Decimal to Binary Converter</h1>
</span>
<div class="wrap-input2">
<input class="input2" type="number" id="number" placeholder="Enter a number" min="0" max="" required>
</div>
<div class="wrap-input2 validate-input" data-validate="Message is required" disabled>
<h1 id="result">010101</h1>
<h2 id="results"></h2>
</div>
<div class="container-contact2-form-btn">
<div class="wrap-contact2-form-btn">
<div class="contact2-form-bgbtn"></div>
<button class="contact2-form-btn" id="submit" onmousedown="bleep.play()">
Send Your Message
</button>
</div>
</div>
</form>
<!-- Digital clock START-->
<div class="clock">
<div class="display">
<h1 id="time"></h1>
<small></small>
<div class="fullDay">
<small id="days" class="newDate"></small>
<small id="month" class="newDate"></small>
<small id="year" class="newDate"></small>
</div>
</div>
</div> <!-- Digital clock START-->
</div>
</div>
</div>
</section>
<!-- Decimal to Binary Converter END -->
<script src="main.js">
</script>
</body></html>