Skip to content

Instantly share code, notes, and snippets.

@latagore
Last active August 14, 2017 01:38
Show Gist options
  • Save latagore/3796a8200adf687b39ac268a95d3bec2 to your computer and use it in GitHub Desktop.
Save latagore/3796a8200adf687b39ac268a95d3bec2 to your computer and use it in GitHub Desktop.
Intro to HTML/CSS complete files
<!doctype html>
<html>
<head>
<title>My First Web Page</title>
<link rel=”stylesheet” href=”styles.css”>
</head>
<body>
<p id="introduction">Writing <span class="html">HTML</span> is awesome!</p>
<p id="about-css">CSS makes it even more awesome.</p>
<p>
Today we are going to write some <span class="html">HTML</span> and CSS.
</p>
</body>
</html>
#introduction {
text-align: center;
color: blue;
}
#about-css {
font-size: 200%;
}
.html {
font-family: monospace;
font-size: 200%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment