-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlatihan2.html
More file actions
52 lines (45 loc) · 1.68 KB
/
latihan2.html
File metadata and controls
52 lines (45 loc) · 1.68 KB
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
<!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>Document</title>
<link rel="stylesheet" href="latihan2.css">
</head>
<body>
<div class="hero">
<div class="navbar">
<img src="images/logo.png" alt="logo">
<ul>
<li> <a href="#"> Home</a></li>
<li> <a href="#"> About</a></li>
<li> <a href="#"> Contact</a></li>
</ul>
<div class="navbar-icons">
<img src="images/fb.png" alt="">
<img src="images/ig.png" alt="">
<img src="images/tw.png" alt="">
</div>
</div>
<div class="banner">
<div class="left-column">
<div class="search-box">
<img src="images/info.png" alt="">
<input type="text">
</div>
<h1>Straw<span>berries</span></h1>
<h3>Always <span>fills your</span> heart</h3>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Repellat doloribus culpa magnam! Placeat optio magni accusamus fugiat ut numquam repudiandae non odit pariatur ipsam, sit quod veniam nam et repellendus!</p>
</div>
<div class="right-column">
<img src="images/background.png" alt="">
</div>
</div>
<div class="btn">
<button type="button" class="primary-btn">Learn More</button>
<button type="button">Watch Video</button>
</div>
</div>
</body>
</html>