Skip to content

Instantly share code, notes, and snippets.

@Sourdoughnerd
Created August 25, 2015 18:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sourdoughnerd/ed0baa40906132ecd2da to your computer and use it in GitHub Desktop.
Save Sourdoughnerd/ed0baa40906132ecd2da to your computer and use it in GitHub Desktop.
Week1Day2BlogExample
<html>
<head>
<link href="styles.css" rel="stylesheet">
<title>NoobHacker</title>
</head>
<body bgcolor=#C0C0C0>
<h1>NoobHacker</h1>
<div class = "headerNoobHacker" id="header1"> Welcome to the NoobHacker Blog </div>
<div class = "content" id="content1"> Do you want to become a hacker? So do we! Follow our journey to becoming white hat hackers!</div>
<div class = "footer" id="disclaimer1"> Disclaimer: This is only a blog, don't listen to anything written here </div>
</body>
</html>
h1 {
font-family: courier;
}
p {
color: rgb(123,104,238);
}
i {
font-size: 300%;
}
.headerNoobHacker {
font-style: italic;
font-size: 200%;
font-family: courier;
}
.content {
border: 1px solid purple;
margin: 20px auto;
}
.footer {font-size: 100%;color: black;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment