-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.89 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> -->
<title>CAC 193A Assignment 2</title>
</head>
<body>
<header>
<h1>Assignment 2</h1>
</header>
<!-- Create top menu bar to navigate to pages: Home, About, Contact -->
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Engine Types</a></li>
<li><a href="#">History</a></li>
<li><a href="#">Contact</a></li>
</ul>
<form>
<input type="search" name="q" placeholder="Search query" />
<input type="submit" value="Go!" />
</form>
</nav>
<main>
<!-- write short paragraph on how car engines work -->
<p>Something I find interesting is how car engines use different types of <strong>energy</strong> to move.</p>
<p>Car engines work by <strong>burning fuel in cylinders</strong>, creating controlled <strong>explosions</strong> that push pistons up and down. This piston movement is converted into rotational energy through the crankshaft, rotating the wheels of the vehicle.</p>
<p><img src="https://t1.daumcdn.net/news/201805/24/MOTOYA/20180524120158781ymly.jpg" alt="B48 4-Cylinder Engine" width="350" height="400"></p>
<aside>
<h2>Reference:</h2>
<ul>
<li><a href="https://auto.howstuffworks.com/engine.htm">Britannica - Car Engine</a></li>
<li><a href="https://www.umsl.edu/~feldmanb/pdfs/physicist_view_of_automobile_engine.pdf">Physicist View of Automobile Engine</a></li>
</ul>
</aside>
</main>
<footer>
<p>© 2024 CAC 193A Assignment 2</p>
</footer>
</body>
</html>