-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (41 loc) · 1.48 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
56
<!DOCTYPE html>
<html>
<head>
<title> Find your EZ EV</title>
<link rel="stylesheet" href="sung.css">
</head>
<body>
<header>
<h1>A Hybrid or an Electric vehicle?</h1>
</header>
<nav>
<ul>
<li>
<a href="tesla.html">Electric</a>
</li>
<li>
<a href="toyota.html">Hybrid</a>
</li>
</ul>
</nav>
<h2>Let's compare them!</h2>
<p id="hybridheader"><strong>Hybrid</strong></p>
<ul id="fontstyle">
<li>Gasoline-powered internal combustion is the main power source</li>
<li>Electric motor is used to complement the combustion engine</li>
<li>Electricity is generated on board</li>
</ul>
<p id="electricheader"><strong>Electric</strong></p>
</ul>
<ul>
<li>The battery-powered electric motor is the main power source</li>
<li>The engine is used to complement the electric motor and extend the range</li>
<li>Grid-supplied electricity</li>
</ul>
<h3>Vehicle types</h3>
<p class="test">Hybrid: Prius</p>
<img src="prius.jpg">
<p class="test">Electric: Tesla</p>
<img src="tesla.jpg">
</body>
</html>