40 lines
742 B
HTML
40 lines
742 B
HTML
<head>
|
|
<link rel="stylesheet" href="test.css">
|
|
</head>
|
|
<div class="layout">
|
|
|
|
<aside class="sidebar">
|
|
<h2>Mon site</h2>
|
|
|
|
<nav>
|
|
<a href="#accueil">Accueil</a>
|
|
<a href="#profil">Profil</a>
|
|
<a href="#projets">Projets</a>
|
|
<a href="#contact">Contact</a>
|
|
</nav>
|
|
</aside>
|
|
|
|
<main class="content">
|
|
<section id="accueil">
|
|
<h1>Accueil</h1>
|
|
<p>Bienvenue sur mon site.</p>
|
|
</section>
|
|
|
|
<section id="profil">
|
|
<h1>Profil</h1>
|
|
<p>Ma présentation...</p>
|
|
</section>
|
|
|
|
<section id="projets">
|
|
<h1>Projets</h1>
|
|
<p>Mes projets...</p>
|
|
</section>
|
|
|
|
<section id="contact">
|
|
<h1>Contact</h1>
|
|
<p>Mes coordonnées...</p>
|
|
</section>
|
|
</main>
|
|
|
|
</div>
|