Initial commit

This commit is contained in:
2021-07-09 20:12:35 -03:00
commit bfc3bcf646
2 changed files with 33 additions and 0 deletions

16
index.php Normal file
View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>All news</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>AllNews.com</h1>
</header>
</body>
</html>

17
style.css Normal file
View File

@@ -0,0 +1,17 @@
* {
margin: 0;
padding: 0;
}
html {
font-family: Arial, Helvetica, sans-serif;
}
header {
padding-top: 4vh;
padding-bottom: 4vh;
display: flex;
justify-content: center;
background-color: #00000020;
color: white;
}