-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (77 loc) · 2.16 KB
/
Copy pathindex.html
File metadata and controls
85 lines (77 loc) · 2.16 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
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
<!DOCTYPE html>
<html lang="id">
<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" />
<!-- FAVICONS -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="src/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="src/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="src/favicon/favicon-16x16.png"
/>
<link rel="manifest" href="src/favicon/site.webmanifest" />
<title>SITCOM</title>
<!-- CSS -->
<link rel="stylesheet" href="src/style/reset.css" />
<link rel="stylesheet" href="src/style/main.css" />
<!-- FONTAWESOME -->
<script
src="https://kit.fontawesome.com/89851fc4a2.js"
crossorigin="anonymous"
></script>
</head>
<body>
<!--! MAIN -->
<main>
<!-- Header -->
<div class="header" id="header">
<h1>Kumpulan Karya Kami</h1>
</div>
<div class="box">
<div class="search-box" id="search-box">
<label for="search"
><i class="fas fa-search" style="user-select: auto"></i
></label>
<input
class="search"
name="search"
id="search"
type="text"
placeholder="Search..."
/>
</div>
</div>
<!-- Projects -->
<ul class="projects-container" id="projectsContainer">
<div class="projects" id="projects"></div>
<!-- OTOMATIS DI ISI DARI "./data/proyek.json" -->
<a href="#" id="loadMore" class="load-more">See More</a>
</ul>
</main>
<!--! FOOTER -->
<footer>
<p>
Copyright <i class="far fa-copyright"></i> SITCOM
<a target="_blank" href="https://sman2bdg.sch.id/">Smanda</a>
2021-2022. All Rights Reserved. | <i class="fab fa-instagram"></i>
<a target="_blank" href="https://www.instagram.com/sitcomsmanda/"
>SITCOM</a
>
</p>
</footer>
<script src="src/js/main.js"></script>
</body>
</html>