Skip to content

Commit

Permalink
My Internet Homepage Added
Browse files Browse the repository at this point in the history
  • Loading branch information
void soul committed Nov 7, 2020
1 parent 0859c39 commit 69a7983
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .local/share/extras/html/homepage.html
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>
24 changes: 24 additions & 0 deletions .local/share/extras/html/style.css
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;
}

0 comments on commit 69a7983

Please sign in to comment.