forked from su7ox/WebDev-TeamIND
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbiology.html
49 lines (47 loc) · 1.99 KB
/
biology.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<script src="script.js"></script>
<title>Biology</title>
</head>
<body>
<div class="bioH">
<header>
<h1>Biology</h1>
</header>
</div>
<nav>
<ul>
<li><a href="index.html#home">Home</a></li>
<li><a href="index.html#courses">Courses</a></li>
<li><a href="science.html#courses">Subjects</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
<div class="search-bar-biology">
<input type="text" id="searchInput" placeholder="Search By Topic Name...">
<button class="search-button" onclick="searchSubjects()">Search</button>
</div>
<div class="Biobox-container">
<div class="box">
<h3>Topic Name</h3>
<p><iframe width="560" height="315" src="https://www.youtube.com/embed/hXUN-pkq68I?si=xwaHuz5UfCwlUds-" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<a href="sample.pdf" download>PDF Notes</a>
</p>
</div>
<div class="box">
<h3>Topic Name</h3>
<p><iframe width="500" height="205" src="https://www.youtube.com/embed/RZcfA_utnA0?si=hOiB9GoNDQa-T8Qf" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<a href="sample.pdf" download>PDF Notes</a></p>
</div>
<div class="box">
<h3>Topic Name</h3>
<p>Content for Box 3</p>
</div>
</div>
</body>
</html>