You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
3.7 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>A hompage</title>
<link rel="stylesheet" href="style-main.css" />
<link rel="stylesheet" href="desktop.css" media="screen and (min-width: 480px)" />
<link rel="stylesheet" href="print.css" media="print" />
</head>
<body>
<header>
<nav id="main-menu">
<input type="checkbox" id="switch" hidden />
<label for="switch" class="menu-label">
<span class="burger"><b class="burger-line"></b><b class="burger-line"></b><b class="burger-line"></b></span>
<span class="menu-text">Menu</span>
</label>
<ul>
<li class="top-menu-item "><a href="">About</a></li>
<li class="top-menu-item current"><span>Home</span></li>
<li class="top-menu-item "><a href="">Blog</a></li>
<li class="top-menu-item "><label class="menu-contact-label" for="show-contact">Contact</label></li>
</ul>
</nav>
<div class="img-wrap">
<picture>
<source type="image/webp" media="(max-width: 359px)" srcset="./espresso.webp">
<source media="(max-width: 359px)" srcset="./espresso-vert.jpg">
<source media="(orientation: landscape) and (min-width: 360px) and (max-width: 989px)" srcset="./espresso-neg.jpg">
<source media="(min-width: 990px)" srcset="./espresso.jpg">
<img src="./espresso-vert.jpg" alt="">
</picture>
</div>
<h1>A hompage</h1>
</header>
<main>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
<section>
<h2>Lorem Ipsum has been the industry's standard dummy text</h2>
<p>ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum</p>
</section>
<p>ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum</p>
</main>
<aside></aside>
<footer></footer>
<input type="checkbox" checked id="show-contact" hidden />
<div class="contact-form-wrap">
<h3 class="h3">Contact us</h3>
<form id="cf-main-form" class="cf-form" method="get" action="">
<div class="cf-input-group">
<label for="nom" class="cf-label">Votre nom</label>
<input type="text" id="nom" name="Nom" class="cf-input cf-text">
</div>
<div class="cf-input-group">
<label for="email" class="cf-label">Votre courriel</label>
<input type="email" id="email" name="courriel" class="cf-input cf-email">
</div>
<div class="cf-input-group">
<label for="message" class="cf-label">Votre message</label>
<textarea id="message" name="message" class="cf-input cf-textarea" rows="6" maxlength="3000"></textarea>
</div>
<div class="cf-input-group">
<button type="submit" id="cf-button" class="cf-input cf-btn">Envoyer</button>
</div>
</form>
</div>
</body>
</html>