Skip to content

Instantly share code, notes, and snippets.

@discosultan
Last active July 10, 2019 19:58
Show Gist options
  • Save discosultan/072025f7fedb8c8f0e63c893bffda890 to your computer and use it in GitHub Desktop.
Save discosultan/072025f7fedb8c8f0e63c893bffda890 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Hello world</h1>
<div style="width: 100px; height: 100px; background-color: red"></div>
<h2>This is a header</h2>
<p>
My name is Panna. I am so cute xoxoxo. This is a link to
<a href="http://google.com">Google</a>.
</p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<style>
.red-square {
width: 100px;
height: 100px;
background-color: red;
margin: 10px;
}
#blue-square {
width: 100px;
height: 100px;
background-color: blue;
margin: 10px;
}
#green-square {
width: 100px;
height: 100px;
background-color: green;
margin: 10px;
}
</style>
</head>
<body>
<!-- I was super drunk when I wrote this code xoxo -->
<div class="red-square"></div>
<div class="red-square"></div>
<div id="blue-square"></div>
<div class="red-square"></div>
<div class="red-square"></div>
<div class="red-square"></div>
<div class="red-square"></div>
<div class="red-square"></div>
<div class="red-square"></div>
<div class="red-square"></div>
<div class="red-square"></div>
<div class="red-square"></div>
<div class="red-square"></div>
<div id="green-square"></div>
<div class="red-square"></div>
<div class="red-square"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment