-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.06 KB
/
index.html
File metadata and controls
39 lines (39 loc) · 1.06 KB
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
<!DOCTYPE html>
<html lang="ka">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello Fico</title>
<style>
body {
background-image:url('hello.png');
background-size: cover;
background-position: top;
background-repeat: no-repeat;
text-align: center;
font-family: 'Comic Sans MS', cursive, sans-serif;
}
h1 {
color: white;
}
.button {
background-color: white;
color: pink;
border: 2px solid red;
padding: 10px 20px;
font-size: 20px;
cursor: pointer;
border-radius: 10px;
}
.button:hover {
background-color: red;
color: white;
}
</style>
</head>
<body>
<h1></h1>
<br><br>
<button class="button" onclick="window.location.href='page2.html'">რომ დამაckლიკოთ თუ შეიზლება</button>
</body>
</html>