-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (80 loc) · 2.12 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
<!DOCTYPE html>
<html>
<!-- bagian head dalam struktur html -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project Tim-B19</title>
<!-- link file css -->
<link rel="stylesheet" href="stylesheet.css">
<link rel="stylesheet" href="responsive.css">
<!-- link icon font awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css" integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
</head>
<!-- bagian body dalam struktur html -->
<body>
<!-- bagian header content-->
<header>
<div class="container">
<!-- header left -->
<div class="header-left">
<img class="logo" src="logo_tim.png">
</div>
<!-- Tambahkan ikon menu disini untuk tampilan smartphone-->
<span class="fas fa-bars menu-icon"></span>
<!-- header right -->
<div class="header-right">
<a href="#">Ibnu Salam</a>
<a href="#">Firmanda Nur Fahmi</a>
<a href="#">Irpan Kurniawan</a>
<a href="#">Jeffri Gustianto</a>
<a href="#">Mufti Mustaqim Iskandar</a>
</div>
</div>
</header>
<!-- bagian isi content -->
<div class="content">
<!-- top content -->
<div class="top-content">
<div class="container">
<h1>SELAMAT DATANG di WEBSITE PROJECT Tim-B19</h1>
</div>
</div>
<!-- middle content -->
<div class="middle-content">
<div class="container">
<div class="heading">
<h2>Profile Tim Kami</h2>
</div>
<div class="profiles">
<div class="profile">
<div class="poto-profile">
<img src="ibnu.png">
</div>
<p>IBNU SALAM</p>
</div>
</div>
</div>
</div>
<!-- bottom content -->
</div>
<!-- bagian footer content -->
<footer>
<div class="container">
<!-- logo footer -->
<div class="footer-logo">
<img class="logo" src="logo_tim.png">
</div>
<div class="footer-list">
<ul>
<li>Ibnu Salam</li>
<li>Firmanda Nur Fahmi</li>
<li>Irpan Kurniawan</li>
<li>Jeffri Gustianto</li>
<li>Mufti Mustaqim Iskandar</li>
</ul>
</div>
</div>
</footer>
</body>
</html>