-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (83 loc) · 2.23 KB
/
index.html
File metadata and controls
100 lines (83 loc) · 2.23 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
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
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<title>KEP 2023</title>
<!--==================== Bootstrap ====================-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<!--==================== Unicons LOGO ====================-->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body, html {
height: 100%;
margin: 0;
font-family: Poppins;
}
* {
box-sizing: border-box;
}
img {
height: 100%;
width: 100%;
overflow: hidden;
}
/* Position text in the middle of the page/image */
.bg-text {
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
color: white;
font-family: Poppins;
font-weight: bold;
border: 1px solid #f1f1f1;
border-radius: 20px;
position: absolute;
top: 35%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
width: 80%;
padding: 20px;
text-align: center;
}
.bg-text-bawah {
top: 70%;
}
.btn-home {
background-color: #4CAF50; /* Green */
border: none;
border-radius: 10px;
color: white;
padding: 15px 32px;
filter: blur(1x);
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
a {
text-decoration: none;
}
h2 {
font-size: 30px;
}
</style>
</head>
<body>
<div class="bg-image">
<img src="Assets/img/KEP Angga-Page-1.jpg" alt="">
</div>
<div class="bg-text">
<h2 style="font-size: 25px;">"Dan setiap Orang yang mengetok, Baginya pintu dibukakan"</h2>
<h1 style="font-size:25px;">Matius 7:8</h1>
<a href="/LandingPage.html" class="btn-home"> <i class="uil uil-envelope-check"> </i>Open The Door </a>
</div>
<div class="bg-text bg-text-bawah">
<h2 style="font-size:15px;">Kepada Yth: </h2>
<h1 style="font-size:15px;">Bapak-Ibu, Saudara/I, OMK </h1>
<h1 style="font-size:15px;">Yang Terkasih Dalam Nama </h1>
<h1 style="font-size:15px;">Kristus Yesus</h1>
</div>
</body>
</html>