Skip to content

Instantly share code, notes, and snippets.

@tudorilisoi
Created December 14, 2017 01:03
Show Gist options
  • Save tudorilisoi/43fae8e47a6e3965088b7f3b7629e92d to your computer and use it in GitHub Desktop.
Save tudorilisoi/43fae8e47a6e3965088b7f3b7629e92d to your computer and use it in GitHub Desktop.
HTML boilerplate
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML boilerplate</title>
<meta charset="utf-8" name="description" content="HTML boilerplate">
<!-- fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<!-- reset -->
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/4.1.1/normalize.min.css">
<style type="text/css">
body * {
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
</style>
<!-- styles -->
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<p> A clean slate HTML REPL</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment