Base layout

This commit is contained in:
Edgar P. Burkhart 2020-08-07 08:10:29 +02:00
parent 5edae81395
commit 6bbe665edc
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
2 changed files with 21 additions and 0 deletions

7
css/main.css Normal file
View File

@ -0,0 +1,7 @@
html {
box-sizing: border-box;
font-family: sans-serif;
}
*, *::before, *::after {
box-sizing: inherit;
}

14
index.html Normal file
View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title>Edgar P. Burkhart</title>
<link rel="stylesheet" type="text/css" href="css/main.css" />
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>