Skip to content

Instantly share code, notes, and snippets.

@rsha256
Last active March 10, 2021 19:00
Show Gist options
  • Save rsha256/16497846cf63d728a685fb3bb93d0bc8 to your computer and use it in GitHub Desktop.
Save rsha256/16497846cf63d728a685fb3bb93d0bc8 to your computer and use it in GitHub Desktop.
Barebones Example Template for Web Design Seminar
<!DOCTYPE html>
<html>
<head>
<!-- character encoding (allows special characters) -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>tab name</title>
<meta name="description" content="An interactive getting started guide for HTML.">
<!-- link to css sheet (colors) -->
<link rel="stylesheet" href="main.css">
</head>
<body>
<h1>My first site</h1>
<h2>About me!</h2>
<h3>My Name</h3>
<p>
Github:
</p>
<!-- list -->
<ul>
<li><a href="http://github.com">hyperlink to github</a></li>
<li>See my code on <a href="http://github.com/rsha256">my Github</a></li>
</ul>
</body>
</html>
@rsha256
Copy link
Author

rsha256 commented Jan 14, 2018

example for web design seminar

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment