-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 836 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Company Directory</title>
<link rel="stylesheet" href="styles/styles.css">
</head>
<body class="body">
<header>
<h1>Company Directory</h1>
<input type="text" id="search" placeholder="Search companies..." oninput="filterCompanies()">
<select id="filter" onchange="filterCompanies()">
<option value="all">All Categories</option>
<option value="tech">Tech</option>
<option value="finance">Finance</option>
<option value="retail">Retail</option>
</select>
</header>
<main>
<div class="container">
<div class="row" id="companyGrid"></div>
</div>
</div>
</main>
<script src="scripts/script.js"></script>
</body>
</html>