-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphysics.html
More file actions
49 lines (46 loc) · 1.55 KB
/
physics.html
File metadata and controls
49 lines (46 loc) · 1.55 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
<!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">
<title>Physics</title>
</head>
<body>
<div class="bioH">
<header>
<h1>Physics</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>Mechanics</h3>
<p>About Mechanics</p>
<a href="mechanics.html" class="cta-button">Topics</a>
</div>
<div class="box">
<h3>Electricity and Magnetism</h3>
<p>About Electricity and Magnetism</p>
<a href="electricity.html" class="cta-button">Topics</a>
</div>
<div class="box">
<h3>Thermodynamics</h3>
<p>About Thermodynamics</p>
<a href="thermodynamics.html" class="cta-button">Topics</a>
</div>
</div>
</body>
</html>