Learning HTML/CSS
Posted: November 26th, 2010 | Author: Gordon | Filed under: design | View Comments<html>
<head>
<title>Learning HTML/CSS — Baby Steps</title>
<style type=”text/css”>
body {
background-color: #C2A7F2;
font0family: sans-serif;
}
h1 {
color: #2A1959;
border-bottom: 2px solid #2A1959;
}
h2 {
color: #474B94;
font-size: 1.2em:
}
h2, p {
margin-left: 120px;
}
</style>
</head>
<body>
<h1><img src=”cover.jpg” “alt=book cover” /> Learning HTML/CSS — Baby Steps</h1>
<h2>Just started learning HTML/CSS today</h2>
<p>This is an example from a book called “Learning Web Design” by Jennifer Robbins. I took the photo from http://www.learningwebdesign.com/</p>
<h2>Is it any good?</h2>
<p>I like it a lot so far. The examples are fluid and easy to follow. Jennifer transitions logically from topic to topic.</p>
<h2>What’s next?</h2>
<p>Hope to finish this book as soon as possible and then get into deeper front-end design work. The final goal is to start doing back-end work too so that I can pull a simple interactive site together.</p>
</body>
</html>
