Skip to content

Commit

Permalink
html et css
Browse files Browse the repository at this point in the history
  • Loading branch information
aliceaupaysdesdata authored Dec 2, 2024
0 parents commit c54824e
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
21 changes: 21 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css"/>
<title> Le titre qui apparaitra dans le navigateur </title>
<meta charset="UTF-8">
</head>

<body>
<h1> Ici le titre principal </h1>
<p> Et voilà le texte de la page</p>
<h2> On peut créer jusqu'à six niveaux de titres en HTML </h2>
<p> Et voici un autre paragraphe qui renvoi vers un lien pour présenter la <a href= "http://www.wildcodeschool.com"> Wild Code School </a> </p>
<img src= "https://drive.google.com/file/d/1-5zv3ZRVrDQCZRXqRILw90bMcqgy3zkC">
<div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 75%;">
<iframe
src="https://drive.google.com/file/d/1-5zv3ZRVrDQCZRXqRILw90bMcqgy3zkC/preview"
style="top: 0; left: 0; width: 100%; height: 100%; position: absolute; border: 0;"
allowfullscreen></iframe></div>
</body>
</html>
27 changes: 27 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
h1{

font-size: 30px;

text-align: center;

color: #de7471

}


p{

font-size: 20px;

text-align: left;

font-family: Helvetica, sans-serif;

}


body {

background-color: #ffffff;

}

0 comments on commit c54824e

Please sign in to comment.