-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
153 lines (143 loc) · 3.88 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!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">
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<title>Daskom Contact</title>
</head>
<style>
@import url('https://fonts.googleapis.com/css2?family=Monda:wght@400;700&display=swap');
body{
font-family: 'Monda', sans-serif;
font-weight: 600;
color: #614f0f;
background-color: #22543d;
}
a{
text-decoration: none;
color: #614f0f;
}
header img {
width: 80px;
}
.header-general {
margin: auto;
width: 50%;
padding: 1rem 0.5rem 1rem 0.5rem;
color: #f6e05e;
}
.item-center{
margin: auto;
width: 50%;
text-align: center;
}
.pt-1{
padding-top: 0.8rem;
}
.button-links{
border: #f6e05e solid;
padding: 0.8rem 6rem 0.8rem 6rem;
background-color: #f6e05e;
border-radius: 0.7rem;
transition: 0.3s;
}
.button-links:hover{
border: #715c11 solid;
padding: 0.8rem 6rem 0.8rem 6rem;
background-color: #d2ac25;
border-radius: 0.7rem;
color: #fffaec;
transition: 0.3s;
}
.footer-item{
color: #f6e05e;
margin-top: 2rem;
margin-bottom: 2rem;
font-style: italic;
}
@media screen and (max-width: 551px) {
.button-links{
padding: 0.8rem 3rem 0.8rem 3rem;
}
body{
font-size: 15px;
}
.item-center{
margin: auto;
width: 100%;
text-align: center;
}
header img {
width: 60px;
}
}
@media screen and (max-width: 350px) {
.button-links{
padding: 0.8rem 0rem 0.8rem 0rem;
}
body{
font-size: 10px;
}
header img {
width: 40px;
height: auto;
}
}
</style>
<body>
<!-- logo and header views -->
<section id="header-links">
<header class="header-general">
<div class="item-center">
<img src="assets/daskom_logo.png" alt="daskomlab-logo">
</div>
<div class="item-center pt-1">
<span>Daskom Laboratory Official</span>
</div>
</header>
</section id="links-menu">
<div class="item-center">
<div>
<a href="https://daskomlab.com/" target="_blank" rel="noopener noreferrer"><div class="button-links">
<span>Web Apps</span>
</div></a>
</div>
<div class="pt-1">
<a href="https://www.instagram.com/telu.daskom" target="_blank" rel="noopener noreferrer"><div class="button-links">
<span>Instagram</span>
</div></a>
</div>
<div class="pt-1">
<a href="https://timeline.line.me/user/_dbhqzOurXL1CbjNxhYBPzSbYBVWZFDnFa5_ashs?ltclid=11a218bd-098a-46f4-bdda-1fabf51db2a9" target="_blank" rel="noopener noreferrer"><div class="button-links">
<span>Line</span>
</div></a>
</div>
<div class="pt-1">
<a href="https://www.youtube.com/c/DaskomTelU" target="_blank" rel="noopener noreferrer"><div class="button-links">
<span>Youtube</span>
</div></a>
</div>
<div class="pt-1">
<a href="https://recruitment.daskomlab.com/" target="_blank" rel="noopener noreferrer"><div class="button-links">
<span>Recruitment</span>
</div></a>
</div>
<div class="pt-1">
<a href="https://ctf.daskomlab.com/" target="_blank" rel="noopener noreferrer"><div class="button-links">
<span>Capture the Flag (by daskom1337)</span>
</div></a>
</div>
</div>
<section id="footer-links">
<div class="item-center">
<div class="footer-item">
<span>#LOOPINGFOREVER</span>
</div>
</div>
</section>
</body>
</html>