-
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
0 parents
commit c54824e
Showing
2 changed files
with
48 additions
and
0 deletions.
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 |
---|---|---|
@@ -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> |
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 |
---|---|---|
@@ -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; | ||
|
||
} |