Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
ValidUser committed Dec 31, 2023
1 parent 6ca638d commit 683df5b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 39 deletions.
28 changes: 1 addition & 27 deletions contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,34 +34,8 @@ <h1 id="titre_principale">Saterz's Website</h1>
</nav>
</header>

<section class="hero">
<h2 class="titres">Bienvenue sur mon site personnel</h2>
<p>On est censé mettre quoi ici ?</p>
</section>

<section class="about">
<h2 class="titres">À propos de moi</h2>
<br>
<p>Mon pseudo universel est Saterz j'ai 14 ans et je suis en 3e.</p>
<p>Je provient des Antilles Française. Je parle Français, Anglais, un petit peu de Creöle (counia manmanw) et d'Espagnol (pas du tout).</p>
<p>J'adore l'informatique, la musique, les livres (je vous conseille de lire Hunger Games) et les jeux vidéo.</p>
<br>
<p id="playlist"><strong>Tenez voici ma playlist :</strong></p>
<br>
<iframe style="border-radius:12px" src="https://open.spotify.com/embed/playlist/1RZOVr2AB5TKGI2Sfekjqb?utm_source=generator&theme=0" width="50%" height="352" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>
</section>

<section class="portfolio">
<h2 class="titres">Portfolio</h2>
<div class="portfolio-item">
<img src="exemple-projet-1.jpg" alt="Projet 1">
<p>Description du projet 1.</p>
</div>
<div class="portfolio-item">
<img src="exemple-projet-2.jpg" alt="Projet 2">
<p>Description du projet 2.</p>
</div>
<!-- Ajoutez plus d'éléments portfolio au besoin -->
<h2 class="titres">Mes réseaux :</h2>
</section>

<footer>
Expand Down
10 changes: 4 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,9 @@
<h1 id="titre_principale">Saterz's Website</h1>
<br>
<nav>
<ul>
<li><span class="material-symbols-outlined">home</span><a href="/index.html">Accueil</a></li>
<li><span class="material-symbols-outlined">info</span><a href="/apropos.html">À propos</a></li>
<li><span class="material-symbols-outlined">alternate_email</span><a href="/contact.html">Contact</a></li>
</ul>
<span class="material-symbols-outlined">home</span><a href="/index.html">Accueil</a>
<span class="material-symbols-outlined">info</span><a href="/apropos.html">À propos</a>
<span class="material-symbols-outlined">alternate_email</span><a href="/contact.html">Contact</a>
</nav>
</header>

Expand All @@ -48,7 +46,7 @@ <h2 class="titres">Bienvenue sur mon site personnel</h2>
</section>

<footer>
<p>© 2023 Saterz</p>
<p>Copyright © 2023 Saterz</p>
</footer>
</body>
</body>
Expand Down
File renamed without changes
10 changes: 4 additions & 6 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Young+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap');

* {
margin: 0;
Expand All @@ -8,7 +9,7 @@
}

body {
font-family: Arial, sans-serif;
font-family: 'Tilt Neon', sans-serif;
margin: 0;
padding: 0;
}
Expand All @@ -25,16 +26,13 @@ header {
text-align: center;
}

nav ul {
nav {
list-style: none;
}

nav ul li {
display: inline;
margin-right: 20px;
}

nav ul li a {
nav a {
color: #fff;
text-decoration: none;
}
Expand Down

0 comments on commit 683df5b

Please sign in to comment.