Skip to content

Instantly share code, notes, and snippets.

@JosePedroDias
Last active August 29, 2015 14:14
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 JosePedroDias/bf4dd7e2276c9330ca8e to your computer and use it in GitHub Desktop.
Save JosePedroDias/bf4dd7e2276c9330ca8e to your computer and use it in GitHub Desktop.
testing multi-document gist
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>BLOG PETACULAR</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>BLOG PETACULAR</h1>
<ul>
<li><a href="post1.html">post 1</a></li>
<li><a href="post2.html">post 2</a></li>
</ul>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>post 1 - BLOG PETACULAR</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>post 1 - BLOG PETACULAR</h1>
cenas
<a href="index.html">index</a>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>post 2 - BLOG PETACULAR</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>post 2 - BLOG PETACULAR</h1>
coisas
<a href="index.html">index</a>
</body>
</html>
body {
font-family: sans-serif;
background-color: #FDD;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment