-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (46 loc) · 2.28 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
<!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>Semester 2 CuyUniversity</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Silkscreen&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="container">
<div class="wrapper">
<div class="card text-center">
<h1 class="title">Youtube</h1>
<i class="fa-brands fa-youtube icons"></i>
<p class="description">Firdaus Fitri Youtube Channel</p>
<button onclick="window.open('http://www.youtube.com', '_blank')" class="btn">Follow</button>
</div>
<div class="card text-center">
<h1 class="title">Twitter</h1>
<i class="fa-brands fa-twitter icons"></i>
<p class="description">Firdaus Fitri Twitter Profile</p>
<button onclick="window.open('http://www.twitter.com', '_blank')" class="btn">Follow</button>
</div>
<div class="card text-center">
<h1 class="title">Tiktok</h1>
<i class="fa-brands fa-tiktok icons"></i>
<p class="description">Firdaus Fitri Tiktok Page</p>
<button onclick="window.open('http://www.tiktok.com', '_blank')" class="btn">Follow</button>
</div>
<div class="card text-center">
<h1 class="title">Facebook</h1>
<i class="fa-brands fa-facebook icons"></i>
<p class="description">Firdaus Fitri Facebook Profile</p>
<button onclick="window.open('http://www.facebook.com', '_blank')" class="btn">Follow</button>
</div>
</div>
</div>
</body>
</html>