-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
128 lines (110 loc) · 5.42 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Happy Birthday Putbal</title>
<!-- bootstrap css -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<!-- bootstrap javascript -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&family=Ubuntu:wght@700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/685ab7cdf9.js" crossorigin="anonymous"></script>
<!-- Local Stylesheet -->
<link rel="stylesheet" href="styles/stylesheet.css">
</head>
<body>
<section class="white-section" id="home">
<nav class="navbar navbar-expand-lg navbar-dark" style="background-color:#DB3069;">
<div class="container">
<a class="navbar-brand" href="#">Putbal</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#feature">Doa</a>
</li>
<li class="nav-item">
<a href="#pesan" class="nav-link">Pesan</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid">
<div class="row">
<div class="col-lg-6 text-center"><img id="birthday-cake" src="img/cake.svg" alt=""></div>
<div class="col-lg-6 text-center">
<h1>HAPPY BIRTHDAY</h1>
<img src="img/putbal.png" alt="foto-putbal" id="putbal-foto" class="text-right">
<p id="wish">Wish you all the best!</p>
</div>
</div>
</div>
</section>
<section class="colored-section text-center" id="feature">
<div class="container-fluid">
<div class="row">
<div class="feature-box col-lg-4">
<i class="icon fas fa-check-circle fa-4x"></i>
<h3 class="feature-title">Umur.</h3>
<p>Semoga panjang umur dan sehat selalu.</p>
</div>
<div class="feature-box col-lg-4">
<i class="icon fas fa-bullseye fa-4x"></i>
<h3 class="feature-title">Target.</h3>
<p>Semoga target dan cita-cita yang diinginkan tercapai.</p>
</div>
<div class="feature-box col-lg-4">
<i class="icon fas fa-heart fa-4x"></i>
<h3 class="feature-title">Hati.</h3>
<p>Semoga tetap baik hati dan tidak sombong.</p>
</div>
</div>
</div>
</section>
<section class="white-section" id="pesan">
<div class="container-fluid">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel" data-interval="false">
<ol class="carousel-indicators">
<li data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0" class="active"></li>
<li data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1"></li>
<li data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2"></li>
</ol>
<div class="carousel-inner text-center">
<div class="carousel-item active">
<h2 class="testimonial-text">Dari teman lu yang sering berkeluh kesah ke lu.</h2>
</div>
<div class="carousel-item">
<h2 class="testimonial-text">Terima kasih sudah mau menjadi teman gw.</h2>
</div>
<div class="carousel-item">
<h2 class="testimonial-text">Karena gw ngga bisa nyanyi</h2>
<iframe width="560" height="315" src="https://www.youtube.com/embed/ib8DHcaTFag" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</a>
</div>
</div>
</section>
<section class="colored-section text-center">
<div class="container-fluid">
<div class="regards">
<h2>Best Regards</h2>
<h3>Muhammad Faqih</h3>
</div>
</div>
</section>
</body>
</html>