-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
110 lines (108 loc) · 4.61 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
<html>
<head>
<title>Website dengan Sass</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="css-output.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css">
</head>
<body>
<section class="navbar">
<a href="#"><img src="images/logo.png"></a>
<div class="right">
<a href="#about">About</a>
<a href="#product">Our Product</a>
<a href="#contact">Contact</a>
</div>
</section>
<!--Section Header-->
<section class="header">
<!-- source image header.jpg" didownload dari situs unsplash.com, koleksi Georgie Cobbs -->
<div class="text-header">
<h1 class="judul-header">Belajar Coding from Zero to Hero</h1>
<hr>
<p>Bergabung bersama kami untuk belajar coding dengan mudah dan terstruktur.</p>
<a href="#" class="button-primary">Gabung</a>
<a href="#" class="button-secondary">Pelajari dulu</a>
</div>
</section>
<!--Section About-->
<section class="about">
<div class="grid-container">
<div class="item-sepertiga">
<!-- source image baby.jpg didownload dari situs unsplash.com, koleksi Troy T - @ttcollect -->
<img src="images/baby.jpg">
</div>
<div class="item-duapertiga">
<h1>About us</h1>
<h2>Berkenalan dengan Codepolitan</h2>
<p>Belajar Coding bersama kami. Belajar Coding bersama kami. Belajar Coding bersama kami. Belajar Coding bersama kami. Belajar Coding bersama kami. </p>
</div>
</div>
</section>
<!--Section Product-->
<section class="product">
<div class="text-header">
<h1 class="judul-product">Our Product</h1>
<hr>
</div>
<div class="product-body">
<div class="product-item">
<div class="product-header">
<!-- source img1.jpg didownload dari situs unsplash.com, koleksi Clément H - @clemhlrdt-->
<img src="images/img1.jpg">
</div>
<div class="product-content">
<h2>Product Pertama</h2>
<p>Ini merupakan product unggulan dari CodePolitan. Silakan bergabung untuk mendapatkan manfaatn dari product ini.</p>
</div>
<div class="product-footer">
<a href="#" class="button-primary">Detail</a>
</div>
</div>
<div class="product-item">
<div class="product-header">
<!-- source img2.jpg didownload dari situs unsplash.com, koleksi NordWood Themes - @nordwood -->
<img src="images/img2.jpg">
</div>
<div class="product-content">
<h2>Product Kedua</h2>
<p>Ini merupakan product unggulan dari CodePolitan. Silakan bergabung untuk mendapatkan manfaatn dari product ini.</p>
</div>
<div class="product-footer">
<a href="#" class="button-primary">Detail</a>
</div>
</div>
<div class="product-item">
<div class="product-header">
<!-- source img1.jpg didownload dari situs unsplash.com, koleksi Clément H - @clemhlrdt-->
<img src="images/img1.jpg">
</div>
<div class="product-content">
<h2>Product Ketiga</h2>
<p>Ini merupakan product unggulan dari CodePolitan. Silakan bergabung untuk mendapatkan manfaatn dari product ini.</p>
</div>
<div class="product-footer">
<a href="#" class="button-primary">Detail</a>
</div>
</div>
</div>
</section>
<!--Section Contact-->
<section class="contact">
<div class="info">
<h1>Contact Us</h1>
<p>Jika Anda mempunyai pertanyaan, jangan ragu untuk menghubungi kami.</p>
<i class="fa fa-map-marker"></i>Bandung, Jawa Barat<br>
<i class="fa fa-phone"></i>+62 000 000<br>
<i class="fa fa-envelope"></i>[email protected]<br>
</div>
</section>
<!--Section Footer-->
<section class="footer">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<p>Powered by CodePolitan</p>
</section>
</body>
</html>