Last active
August 13, 2018 01:30
-
-
Save TheBuzzSaw/77e87d1f77b1823f9d8cd5c14ebfbe18 to your computer and use it in GitHub Desktop.
Bootstrap Fundamentals
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> | |
<title>DEJARIX</title> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> | |
<link rel="stylesheet" href="css/bootstrap.min.css" /> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>Hello, World!</h1> | |
<div class="row"> | |
<div class="col-8"> | |
<h2>Workspace</h2> | |
</div> | |
<div class="col"> | |
<h2>Lookup</h2> | |
</div> | |
</div> | |
</div> | |
<script src="js/jquery-3.3.1.min.js"></script> | |
<script src="js/popper.min.js"></script> | |
<script src="js/bootstrap.min.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment