Last active
December 18, 2020 11:05
-
-
Save MrRuiz/ba0c02ef5a69263b71c4 to your computer and use it in GitHub Desktop.
HTML: Basic HTML Template
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> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<meta name="description" content=""> | |
<meta name="keywords" content=""> | |
<meta name="author" content=""> | |
<!-- Favicon --> | |
<!-- For IE 9 and below. ICO should be 32x32 pixels in size --> | |
<!--[if IE]><link rel="shortcut icon" href="path/to/favicon.ico"><![endif]--> | |
<!-- Touch Icons - iOS and Android 2.1+ 180x180 pixels in size. --> | |
<link rel="apple-touch-icon-precomposed" href="apple-touch-icon-precomposed.png"> | |
<!-- Firefox, Chrome, Safari, IE 11+ and Opera. 196x196 pixels in size. --> | |
<link rel="icon" href="path/to/favicon.png"> | |
<!-- Fonts --> | |
<link href='http://fonts.googleapis.com/css?family=Lato:300' rel='stylesheet' type='text/css'> | |
<title>HTML TEMPLATE</title> | |
<!-- less --> | |
<link rel="stylesheet" href="assets/css/app.css"> | |
<link rel="stylesheet" href="assets/css/vendor/font-awesome-4.2.0/css/font-awesome.min.css"> | |
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> | |
<!--[if lt IE 9]> | |
<script src="//oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> | |
<script src="//oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> | |
<![endif]--> | |
</head> | |
<body> | |
<header> | |
</header> | |
<main> | |
<section id="#"> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-12"> | |
</div> | |
</div> | |
</div> | |
</section> | |
</main> | |
<footer> | |
</footer> | |
<script src="assets/js/vendor/jquery/jquery-1.10.1.min.js"></script> | |
<script src="assets/js/custom.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment