Skip to content

Commit

Permalink
html commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-hrr-harry committed Mar 24, 2023
1 parent 4b1a28c commit a113892
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 0 deletions.
42 changes: 42 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!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>Horror XO</title>

<link rel="stylesheet" href="styles.css">
</head>
<body>
<header id="hdr">
<h1>Horror XO</h1>
</header>

<Section id="bdy">
<table id="box">
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</Section>

<footer id="ftr">
<p>Developed by Horror</p>
</footer>
</body>
</html>
23 changes: 23 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Roboto+Condensed&family=Tilt+Warp&display=swap');

*{
padding: 0;
margin: 0;

text-align: center;
font-family: 'Poppins', sans-serif;
font-family: 'Roboto Condensed', sans-serif;
font-family: 'Tilt Warp', cursive;
}

/* Header */

#hdr{

position: relative;
padding: 20px;
margin: 10px;

text-align:center;

}

0 comments on commit a113892

Please sign in to comment.