Resources attached to the Road To DevOps tutorial
https://blog.noobtoroot.xyz/road-to-devops/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
500 B
31 lines
500 B
2 years ago
|
<!doctype html>
|
||
|
<html lang="fr">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Titre de la page</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<style>
|
||
|
div.container {
|
||
|
background-color: #ffffff;
|
||
|
}
|
||
|
div.container p {
|
||
|
font-family: Arial;
|
||
|
font-size: 48px;
|
||
|
font-style: normal;
|
||
|
font-weight: normal;
|
||
|
text-decoration: overline;
|
||
|
text-transform: none;
|
||
|
color: #ff2d32;
|
||
|
background-color: #fbff42;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<p style="background-color:powderblue;,font-size:90px"> BONJOUR </p>
|
||
|
<div class="container">
|
||
|
<p>Cedric</p>
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|