-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
66 lines (66 loc) · 1.62 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(to bottom right, #1f1f1f, #080808); /* Sağ alttan sol üst köşeye gradient arka plan */
}
.box {
border: 2px solid #1d1d1d;
width: 1000px;
border-radius: 20px;
padding: 20px;
background-color: #1d1d1d;
text-align: center;
}
.box h1 {
margin-bottom: 20px;
color: whitesmoke;
}
.box a {
text-decoration: none;
color: #3498db;
font-weight: bold;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto;
background-color: #3498db;
color: white;
padding: 10px 20px;
border-radius: 20px;
width: 100%;
max-width: 300px;
box-sizing: border-box;
transition: background-color 0.3s;
}
.box a:hover {
background-color: #2974a6;
}
.box a img {
width: 20px;
height: auto;
margin-right: 10px;
}
</style>
<title>Website Offer</title>
</head>
<body>
<div class="box">
<h1>Hey there! Looking for a website for your project? I can create a website for you. Low prices, no upfront payment. Just dm me from Telegram with the button below.</h1>
<a href="https://t.me/oscarbrz">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/82/Telegram_logo.svg/1024px-Telegram_logo.svg.png" alt="Telegram Logo">
Contact on Telegram
</a>
</div>
</body>
</html>