17 lines
339 B
HTML
17 lines
339 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="style/style_base.css" />
|
|
<title> Mon Titre</title>
|
|
<style type="text/css">
|
|
h1:hover {color: green;}
|
|
p {text-align: center;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1 style="color: blueviolet;">Ma page web</h1>
|
|
|
|
<p > Mon pargraphe </p>
|
|
</body>
|
|
</html> |