-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclock.html
26 lines (26 loc) · 1.19 KB
/
clock.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Stefan Obermeier">
<title>Clock</title>
<meta name="description" content="Studying Management and Technology at TUM" />
<meta name="keywords" content="Stefan Obermeir, stefan-obermeier, Stefan Obermeier TUM, Stefan Obermeier München" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<!--<link rel="stylesheet" href="style.css">-->
</head>
<body style="background-color: rgb(10, 10, 10);">
<div class="container">
<div class="d-flex flex-row justify-content-center align-items-center" style="height:100px; margin-top: 200px">
<div class="row">
<div class="display-1" id="clock" style="color:white;font-family: sans-serif;">
00:00:00
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>