Skip to content

Instantly share code, notes, and snippets.

@codingstella
Last active January 26, 2024 15:58
Show Gist options
  • Save codingstella/b78a41c290192bea5b694b1545280179 to your computer and use it in GitHub Desktop.
Save codingstella/b78a41c290192bea5b694b1545280179 to your computer and use it in GitHub Desktop.
This is a basic web page built with HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Exploring Desert Landscapes | @codingstella </title>
<style>
html {
max-width: 800px;
}
body {
background-color: #f3f3f3;
margin: 0 4rem;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 1.15rem;
}
section {
border-bottom: #ccc solid 2px;
}
h1 {
font-size: 3em;
color: #333;
}
ul,
li {
list-style: circle;
color: #555;
}
em {
color: #ff5733;
font-style: italic;
}
</style>
</head>
<body>
<h1>Discovering Desert Adventures</h1>
<section>
<h2>Introduction</h2>
<p>
Embrace the beauty and challenges of desert camping! If you're
considering exploring the desert landscapes, this guide will help you
get started.
</p>
</section>
<section>
<h2>Essential Gear for Desert Camping</h2>
<p>
<mark>Desert camping</mark> demands specific gear to handle the
extreme conditions. It's <strong>crucial to prepare adequately</strong>
for the harsh environment which <em>can be unforgiving.</em> Here's a
list of essential gear for <mark>desert camping.</mark>
</p>
<ul>
<li>Sun protection: Wide-brimmed hat, sunglasses, and sunscreen</li>
<li>Hydration system: Water bottles and a hydration pack</li>
<li>Shelter: Lightweight tent or hammock with mosquito net</li>
<li>Sleeping gear: Lightweight sleeping bag and sleeping pad</li>
<li>Navigation tools: Map, compass, and GPS device</li>
<li>First aid kit: Including supplies for treating heat-related illnesses</li>
</ul>
</section>
<section>
<h2>Desert Camping Experiences</h2>
<p>Here are some captivating moments from desert camping adventures!</p>
<img
src="https://source.unsplash.com/random/?camp,desert"
alt="A scenic view of desert dunes under a clear blue sky"
/>
</section>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment