Skip to content

Instantly share code, notes, and snippets.

@flores8
Created March 9, 2015 22:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flores8/bf14b7c67695e9ed59e2 to your computer and use it in GitHub Desktop.
Save flores8/bf14b7c67695e9ed59e2 to your computer and use it in GitHub Desktop.
If you're following my "Your First Website" posts on lauraleeflores.com (http://lauraleeflores.com/blog/your-first-website-part-1) this is what the about page might start out looking like. Add to it and experiment with it. The best way to learn is to jump in and try stuff. Don't be afraid, you can always undo what you've done. Experiment. Learn.…
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Your Name | About Me</title>
<link rel="stylesheet" href="css/foundation.css" />
<script src="js/vendor/modernizr.js"></script>
</head>
<body>
<div class="row">
<div class="large-12 columns">
<h1>Hello World!!!</h1>
</div>
</div>
<script src="js/vendor/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment