Last active
August 14, 2017 01:38
-
-
Save latagore/3796a8200adf687b39ac268a95d3bec2 to your computer and use it in GitHub Desktop.
Intro to HTML/CSS complete files
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>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> |
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
#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