-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
55 lines (50 loc) · 1.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tech Materials Library</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="https://unpkg.com/simple-icons@v5/icons/opensourceinitiative.svg" type="image/svg+xml">
</head>
<body>
<div class="container">
<header>
<h1>Tech Materials Library</h1>
</header>
<div class="button-container">
<button class="toggleTheme" id="toggleTheme">Toggle Dark/Light Mode</button>
</div>
<section class="add-material">
<h2>Add New Material</h2>
<form id="materialForm">
<div class="form-group">
<label for="contributor">Contributor Name:</label>
<input type="text" id="contributor" required>
</div>
<div class="form-group">
<label for="resourceName">Resource Name:</label>
<input type="text" id="resourceName" required>
</div>
<div class="form-group">
<label for="link">Resource Link:</label>
<input type="url" id="link" required>
</div>
<div class="form-group">
<label for="tags">Tags (comma-separated):</label>
<input type="text" id="tags" placeholder="web dev, html, react">
</div>
<button class="add" type="submit">Add Material</button>
</form>
</section>
<section class="materials-list">
<h2>Available Materials</h2>
<div class="search-bar">
<input type="text" id="searchInput" placeholder="Search materials...">
</div>
<div id="materialsList"></div>
</section>
</div>
<script src="script.js"></script>
</body>
</html>