Last active
February 23, 2020 12:46
-
-
Save csharpforevermore/d8224eba7648d36bbb4e to your computer and use it in GitHub Desktop.
My default (HTML5) page
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>Basic HTML Page</title> | |
<meta name="description" content="My Basic HTML page"> | |
<meta name="author" content="Chris Randle"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" /> | |
<link rel="stylesheet" href="/styles/styles.css?v=1.0"> | |
<!--[if lt IE 9]> | |
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script> | |
<![endif]--> | |
</head> | |
<body> | |
<Button href="#" class="btn-primary"> primary button</Button> | |
<script src="/scripts/scripts.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment