Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
Start a free Courses trial
to watch this video
In My First Web Page you are going to expand your learning about HTML structure and begin to explore how to style your page to make it look the way you want. To begin we are going to connect a CSS stylesheet to our HTML document. Then learn about new tags to make text colorful, choose fonts, upload pictures, and more.
Code for copy/paste:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>All About Joy's Page</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel="stylesheet" type="text/css">
<link href="style.css" rel="stylesheet">
</head>
<body>
<img src="joy.jpg" alt="joy">
<h1>Joy Kesten</h1>
<h2>Teacher</h2>
<h3>San Francisco</h3>
<h4>What I do:</h4>
<p>I'm a teacher at Treehouse, but you should write in what you do here!</p>
<h4>What I enjoy doing:</h4>
<p>When I'm not writing code, I like to surf and play music. Your turn, write in something that makes you happy, or things you like to do in your free time.</p>
</body>
</html>
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign upRelated Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up