-
Notifications
You must be signed in to change notification settings - Fork 1
/
home.html
57 lines (57 loc) · 1.76 KB
/
home.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta charset="utf-8">
<meta http-equiv="content-language" content="tr">
<style>
#vs {
padding:0;
margin:0;
border:5px solid black;
border-radius:20px;
border-bottom:none;
box-shadow:-2px -2px blue;
}
#h1 {
font-size:90px;
text-align:center;
}
sup {
color:red;
font-size:20px;
}
#daily {
border:3px solid red;
border-top-left-radius:10px;
border-top-right-radius:10px;
box-shadow:5px 5px Black;
text-align:center;
}
section {
padding:5px;
border-bottom:2px solid;
font-family:Courier new,monospace;
}
</style>
</head>
<body>
<div id="vs" >
<h1 id="h1" > βETA<sup>v0.7</sup> </h1>
</div>
<div id="daily">
<section>
<p>(v0.7)<b>-Tasarım Güncellendi.<br>-Tema Eklendi.</b>(15.02.2022)</p>
</section>
<section>
<p>(v0.5)<b>-Android Uygulaması Yayınlandı.<br>-Menüye yeni bağlantılar eklendi.<br>-Hata düzeltmesi.</b>(14.02.2022)</p>
</section>
<section>
<p>(v0.3)<b>-Menü sağ tarafa taşındı.<br>-Logo değiştirildi.<br>-Yeni arama motorları eklendi.<br>-Menü tuşuna hızlı arama işlevi eklendi.<br>-Bazı hatalar düzeltildi.</b>(14.02.2022)</p>
</section>
<section>
<p>(v0.1)<b>LEDENOW,GM4G telefon ile yazıldı yayınlandı.</b>(12.02.2022)</p>
</section>
</div>
</body>
</html>