Last active
March 12, 2019 17:39
-
-
Save J3698/d8cd6ad2cd6888047878c8cdd272430e to your computer and use it in GitHub Desktop.
A simple desktop website
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>My Site</title> | |
<meta charset="UTF-8"> | |
<style> | |
#header { | |
position: absolute; | |
top: 0; left: 0; | |
width: 100%; | |
background-color: black; | |
color: white; | |
font-size: 350%; | |
} | |
p { | |
margin-top: 20%; | |
text-align: center; | |
font-size: 250%; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="header">Header</div> | |
<p>Hey, I'm some beautiful content!</p> | |
<p id="desktop-notif">You are on desktop :)</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment