-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (33 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mengenal CSS</title>
<link rel="stylesheet" href="CSS/style.css" />
<!-- internal css -->
</head>
<body>
<!-- Menggunakan inline css -->
<div class="bg-yellow">
<h1>Color</h1>
<p>Menambah color dengan cara inline CSS</p>
</div>
<div class="bg-red">
<h2>Color</h2>
<h5>Menambahkan color dengan cara internal CSS</h5>
</div>
<div class="bg-white">
<h1>Janzen Faidiban</h1>
<img src="https://sacode.web.id/contributors/contributor-janzen-faidiban.png" alt="" width="150px" />
<p>Menggunakan css eksternal</p>
<button>Selengkapnya</button>
</div>
<div class="bg-black">
<h1>Elly Ansek</h1>
<img src="https://sacode.web.id/contributors/contributor-ellyakim-ansek-2.png" alt="" width="100px" />
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Doloremque quas quae maxime iure aperiam quia similique voluptatem a. Culpa eveniet quos nisi cumque. Deserunt, quo?</p>
<button>Selengkapnya</button>
</div>
</body>
</html>