-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (46 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kodla Dev YouTube</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 50px;
}
.container {
max-width: 600px;
margin: auto;
padding: 20px;
border: 2px solid #333;
border-radius: 10px;
box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
}
h1 {
color: #ff5733;
}
a {
display: inline-block;
padding: 10px 20px;
margin-top: 20px;
font-size: 18px;
color: white;
background-color: #ff5733;
text-decoration: none;
border-radius: 5px;
}
a:hover {
background-color: #cc4627;
}
</style>
</head>
<body>
<div class="container">
<h1>Kodla Dev</h1>
<p>Yazılım, algoritmalar ve kodlama eğitimleri için aşağıdaki butona tıklayarak YouTube kanalımıza gidebilirsiniz.</p>
<a href="https://www.youtube.com/@Kodla_dev" target="_blank">YouTube Kanalına Git</a>
</div>
</body>
</html>