-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<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 rel="stylesheet" href="css/style.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l"
crossorigin="anonymous"
/>
<title>Kodluyoruz Javascript Saat Ödevi</title>
</head>
<body class="bg-dark">
<div class="text-center">
<img
src="https://cdn.sanity.io/images/9kdepi1d/production/65c832d202a503b15d99e628f4313782f3ef50db-300x62.png"
alt=""
class="rounded"
/>
<div class="text1 text-center">
Merhaba, <strong><span id="myName"></span></strong>! Hoş geldin!
</div>
<div id="myClock" class="clock" onload="showTime()"></div>
<div class="text2 text-center">
tarihinde
<strong>Kodluyoruz Frontend Web Development Patikası</strong>'nın
Javascript bölümü 1. Ödevindesiniz.
</div>
</div>
<script src="js/clock.js"></script>
</body>
</html>