-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathms.html
80 lines (80 loc) · 3.08 KB
/
ms.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!doctype html>
<html lang="tr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="application-name" content="Dama Oyunu">
<meta name="description" content="Türk Dama Oyunu">
<meta name="theme-color" content="wheat">
<link rel="icon" href="./img/favicon.ico">
<link rel="icon" type="image/png" sizes="192x192" href="./img/favicon-192.png">
<link rel="apple-touch-icon" href="./img/ikon-apple.png">
<link rel="stylesheet" href="./css/style.css">
<link rel="manifest" href="./manifest.json" crossorigin="use-credentials">
<title>Dama</title>
</head>
<body>
<main class="solüst">
<div class="çerçeve">
<button type="button" class="skor-btn-siyah" aria-label="Siyah skor" id="siyahskor" disabled>
<svg class="ikon skor-svg" viewBox="0 0 20 20">
<rect x="0.5" y="0.5" width="19" height="19" rx="2"
fill="black" stroke="dimgray" stroke-width="1" />
<text x="6" y="14.5" font-family="sans-serif" fill="white"></text>
</svg>
</button>
<button type="button" aria-label="Çevrim değiştir" id="çevrim">
<svg class="ikon">
<use href="./img/icons.svg#cloud-slash"/>
</svg>
</button>
<button type="button" aria-label="Oyuncu değiştir" id="oyuncu">
<svg class="ikon">
<use href="./img/icons.svg#cpu"/>
</svg>
</button>
<button type="button" aria-label="Tahta çevir" id="çevir">
<svg class="ikon">
<use href="./img/icons.svg#arrow-counterclockwise"/>
</svg>
</button>
<button type="button" aria-label="Çerçeve kaldır-göster" id="çgör">
<svg class="ikon">
<use href="./img/icons.svg#arrows-angle-expand"/>
</svg>
</button>
<button type="button" aria-label="Çubuk taşı" id="çutaşı">
<svg class="ikon yatay">
<use href="./img/icons.svg#arrow-bar-right"/>
</svg>
<svg class="ikon düşey">
<use href="./img/icons.svg#arrow-bar-down"/>
</svg>
</button>
<button type="button" aria-label="Yeni oyun" id="yeni">
<svg class="ikon">
<use href="./img/icons.svg#grid"/>
</svg>
</button>
<button type="button" class="skor-btn-beyaz" aria-label="Beyaz skor" id="beyazskor" disabled>
<svg class="ikon skor-svg" viewBox="0 0 20 20">
<rect x="0.5" y="0.5" width="19" height="19" rx="2"
fill="white" stroke="black" stroke-width="1" />
<text x="6" y="14.5" font-family="sans-serif" fill="black"></text>
</svg>
</button>
</div>
<div style="position: relative">
<object data="./img/tahta.svg" type="image/svg+xml" aria-label="Dama Tahtası"></object>
<div class="mesaj-kutu" id="anons">
<div><span id="mesaj1">Mesaj</span><br><span id="mesaj2"></span>
</div>
</div>
</div>
</main>
<script>
navigator.serviceWorker.register('./serw.js');
</script>
<script type="module" src="./js/gir.js"></script>
</body>
</html>