School Commit Init
This commit is contained in:
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 5.8 KiB |
@@ -0,0 +1,94 @@
|
||||
<!---
|
||||
Create a single HTML web page for a subject you like (e.g. personal home page, photo collection, movie stars, cars etc.). You can NOT use any CSS or Javascript on your web page! Only basic HTML language. The web page should be HTML5 valid. You will have to use the following HTML tags in your web page: <img>,<a>,<table>,<br>,<hr>,<p>,<b>,<div>,<ul>, <li>,<section>,<article>,<footer>,<header>,<aside>,<nav>, <svg>,<audio>,<video>,<figure>,<figurecaption>,<main>. Also you should specify the type of document using <!Doctype>. The page must be at least one screen long and at most 2 screens long (using a resolution of 1024x768 pixels). The textual content of the page should be relevant to the chosen subject (not "lorem ipsum" text). <br/><br/> This single web page can be edited using any editor you want and can be presented on any browser you prefer.
|
||||
-->
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>My Favorite Cars</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
<h1>My Favorite Cars</h1>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<section>
|
||||
<h2>Sports Cars</h2>
|
||||
<article>
|
||||
<h3>Porsche 911</h3>
|
||||
<p><img src="porsche_911.jpg" alt="Porsche 911"></p>
|
||||
<p>The <b>Porsche 911</b>, an iconic sports car known for its timeless design and thrilling performance.</p>
|
||||
</article>
|
||||
<br>
|
||||
<article>
|
||||
<h3>Ferrari 488 GTB</h3>
|
||||
<p><img src="ferrari_488_gtb.jpg" alt="Ferrari 488 GTB"></p>
|
||||
<p>The <b>Ferrari 488 GTB</b>, a masterpiece of Italian engineering, combining speed and elegance.</p>
|
||||
</article>
|
||||
</section>
|
||||
<table>
|
||||
<caption>Top 3 Sports Cars</caption>
|
||||
<tr>
|
||||
<th>Rank</th>
|
||||
<th>Car</th>
|
||||
<th>Top Speed</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>1</td>
|
||||
<td>Porsche 911</td>
|
||||
<td>205 mph</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>2</td>
|
||||
<td>Ferrari 488 GTB</td>
|
||||
<td>205 mph</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>3</td>
|
||||
<td>Lamborghini Huracan</td>
|
||||
<td>202 mph</td>
|
||||
</tr>
|
||||
</table>
|
||||
<aside>
|
||||
<h3>Did you know?</h3>
|
||||
<p>The Porsche 911 has been in production since 1963 and is still one of the most popular sports cars in the world.</p>
|
||||
</aside>
|
||||
<nav>
|
||||
<h3>More Cars</h3>
|
||||
<ul>
|
||||
<li><a href="https://www.google.com/search?sca_esv=dcb7b8806130e33c&sxsrf=ACQVn0_e2kv_FpEPoZuMXmmiU9RxHqvn2g:1709289966392&q=muscle+cars&tbm=isch&source=lnms&sa=X&ved=2ahUKEwix9I6q8dKEAxWp_AIHHSFbDdwQ0pQJegQIDRAB&biw=500&bih=961&dpr=1">Muscle Cars</a></li>
|
||||
<li><a href="https://www.google.com/search?q=luxury+cars&tbm=isch&ved=2ahUKEwjlhZar8dKEAxV23QIHHYCzDy8Q2-cCegQIABAA&oq=luxury+cars&gs_lp=EgNpbWciC2x1eHVyeSBjYXJzMgUQABiABDIFEAAYgAQyBhAAGAcYHjIGEAAYBxgeMgYQABgHGB4yBhAAGAcYHjIGEAAYBxgeMgYQABgHGB4yBhAAGAcYHjIGEAAYBxgeSJEZUPYEWKoUcAB4AJABAJgBwgGgAf4HqgEDMC43uAEDyAEA-AEBigILZ3dzLXdpei1pbWfCAgoQABiABBiKBRhDwgIHEAAYgAQYE8ICCBAAGAcYHhgTiAYB&sclient=img&ei=8LHhZeXNJPa6i-gPgOe--AI&bih=961&biw=500">Luxury Cars</a></li>
|
||||
<li><a href="https://www.google.com/search?q=electric+cars&tbm=isch&ved=2ahUKEwie0Iiy8dKEAxU25gIHHQ_tB1oQ2-cCegQIABAA&oq=electric+cars&gs_lp=EgNpbWciDWVsZWN0cmljIGNhcnMqAggAMgUQABiABDIFEAAYgAQyBRAAGIAEMgUQABiABDIFEAAYgAQyBhAAGAcYHjIGEAAYBxgeMgYQABgHGB4yBhAAGAcYHjIGEAAYBxgeSLEVUNoEWLgPcAB4AJABAJgB1AGgAewIqgEFMS43LjG4AQHIAQD4AQGKAgtnd3Mtd2l6LWltZ8ICChAAGIAEGIoFGEPCAgcQABiABBgTwgIIEAAYBxgeGBOIBgE&sclient=img&ei=_7HhZd7UA7bMi-gPj9qf0AU&bih=961&biw=500">Electric Cars</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<svg width="100" height="100">
|
||||
<circle cx="50" cy="50" r="40" stroke="black" stroke-width="3" fill="white" />
|
||||
</svg>
|
||||
<hr>
|
||||
<audio controls>
|
||||
<source src="audioplayback.mp3" type="audio/mpeg">
|
||||
Your browser does not support the audio element.
|
||||
</audio>
|
||||
<hr>
|
||||
<video width="320" height="240" controls>
|
||||
<source src="videoplayback.mp4" type="video/mp4">
|
||||
Your browser does not support the video tag.
|
||||
</video>
|
||||
<hr>
|
||||
<figure>
|
||||
<img src="porsche_911.jpg" alt="Porsche 911">
|
||||
<figcaption>The Porsche 911, an iconic sports car known for its timeless design and thrilling performance.</figcaption>
|
||||
</figure>
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<p>© 2024 My Favorite Cars</p>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 5.5 KiB |
Binary file not shown.
Reference in New Issue
Block a user