-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.43 KB
/
index.html
File metadata and controls
43 lines (43 loc) · 1.43 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
<!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>javascript filter</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="logo">
<img src="src/game-of-thrones.svg" alt="">
</div>
<section class="products">
<div class="filter-container">
<form class="input-form">
<input type="text" class="search-input" placeholder="search..." />
</form>
<h5>Family</h5>
<article class="companies">
<button class="company-btn">Stark</button>
<button class="company-btn">Lannister</button>
<button class="company-btn">Aegon</button>
</article>
</div>
<div class="products-container">
<!-- content here -->
</div>
</section>
<div class="contact">
<a href="https://github.com/tugrankenger" target="_blank">
<img src="src/github.svg" alt="github">
<span>/tugrankenger</span>
</a>
<a href="https://www.linkedin.com/in/tugrankenger/" target="_blank">
<img src="src/linkedin.svg" alt="linkedin">
<span>/tugrankenger</span>
</a>
</div>
<script src="families.js"></script>
<script src="app.js"></script>
</body>
</html>