-
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
void soul
committed
Nov 7, 2020
1 parent
0859c39
commit 69a7983
Showing
2 changed files
with
47 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,23 @@ | ||
<DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<title>The Homepage</title> | ||
<link rel ='stylesheet' type='text/css' href="style.css"> | ||
<meta charset="utf-8"/> | ||
</head> | ||
|
||
<body> | ||
<h1>Welcome to my homepage </h1> | ||
<h2>Second Header</h2> | ||
<p>This is sentence</p> | ||
<p>This is Another Sentence. and in this sentence there is <b>bold</b> word and this <em>italic</em> word too.</p> | ||
<h2>Bookmarks</h2> | ||
<ol> | ||
<li>First Website</li> | ||
<li>First Website</li> | ||
<li>First Website</li> | ||
</ol> | ||
</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,24 @@ | ||
body { | ||
color: white; | ||
background: black; | ||
max-width: 800px; | ||
margin-left: auto; | ||
margin-right: auto; | ||
|
||
} | ||
h1 { | ||
color: red; | ||
} | ||
h2 { | ||
color: green; | ||
} | ||
em { | ||
color: yellow; | ||
} | ||
li { | ||
color: cyan; | ||
} | ||
|
||
h1, h2 { | ||
text-align: center; | ||
} |