-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4b1a28c
commit a113892
Showing
2 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
|
||
} |