Created
December 14, 2017 01:03
-
-
Save tudorilisoi/43fae8e47a6e3965088b7f3b7629e92d to your computer and use it in GitHub Desktop.
HTML boilerplate
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>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