mirror of
https://github.com/BenDWit/freecodecamp.git
synced 2025-12-23 13:09:59 +01:00
24 lines
575 B
HTML
24 lines
575 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Build an Event Flyer Page</title>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<img src="https://cdn.freecodecamp.org/curriculum/labs/event.jpg" alt="event image">
|
|
<h1>CTF</h1>
|
|
<hr>
|
|
</header>
|
|
<main>
|
|
<section>
|
|
<h2>Fun</h2>
|
|
</section>
|
|
<section>
|
|
<h2>Competition</h2>
|
|
</section>
|
|
</main>
|
|
</body>
|
|
</html>
|