-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,46 @@ | ||
index.html | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="css/style.css"> | ||
<title>Votre Nom - Développeur en IA</title> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="container"> | ||
<img src="images/profile.jpg" alt="Photo de profil"> | ||
<h1>Votre Nom</h1> | ||
<p>Développeur en Intelligence Artificielle</p> | ||
</div> | ||
</header> | ||
|
||
<section id="about"> | ||
<div class="container"> | ||
<h2>À propos de moi</h2> | ||
<p>Bienvenue sur mon site personnel. Je suis passionné par le développement en intelligence artificielle...</p> | ||
<!-- Ajoutez plus d'informations à votre sujet ici --> | ||
</div> | ||
</section> | ||
|
||
<section id="projects"> | ||
<div class="container"> | ||
<h2>Mes Projets</h2> | ||
<div class="project"> | ||
<h3>Nom du Projet 1</h3> | ||
<p>Description du Projet 1...</p> | ||
<!-- Ajoutez plus d'informations sur vos projets ici --> | ||
</div> | ||
<!-- Ajoutez plus de projets si nécessaire --> | ||
</div> | ||
</section> | ||
|
||
<footer> | ||
<div class="container"> | ||
<p>Contactez-moi : [email protected]</p> | ||
</div> | ||
</footer> | ||
|
||
<script src="js/script.js"></script> | ||
</body> | ||
</html> |