-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfinish.html
92 lines (83 loc) · 2.25 KB
/
finish.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
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Finish</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
width: 100%;
height: 100%;
background-size: cover;
background-image: url('https://wallpaper.dog/large/20474279.png');
}
.fs {
width: 100%;
height: 100%;
}
.filter {
width: 100%;
height: 100%;
position: absolute;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(0, 0, 0, 0.432);
}
.content {
width: 65%;
height: 470px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: rgba(13, 39, 56, 0.788);
}
h1,
h2 {
margin: 10px;
color: rgb(255, 174, 0);
font-family: 'mjolnirregular';
}
button {
width: 250px;
height: 50px;
border: none;
outline: none;
color: #ffff;
cursor: pointer;
margin: 20px auto;
background-color: rgba(0, 73, 122, 0.788);
}
@font-face {
font-family: 'mjolnirregular';
src: url('./style/mjolnir-webfont.woff2') format('woff2'),
url('./style/mjolnir-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
</style>
</head>
<body>
<div class="filter">
<div class="content">
<h1>Bu bölümü bitirdiniz</h1>
<h2>DİLERSENİZ DİĞER BÖLÜMLERDEN DEVAM EDEBİLİRSİNİZ</h2>
<button onclick="conti()" class="conti">DEVAM ET</button>
</div>
</div>
<div class="fs"></div>
<script>
function conti() {
location.href = '../index.html'
}
</script>
</body>
</html>