33 lines
893 B
HTML
33 lines
893 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>Chapter 03 Project 01</title>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
<h1>Fundamentals of Web Development</h1>
|
||
|
|
<p>
|
||
|
|
<em>By Randy Connolly and Ricardo Hoar</em>
|
||
|
|
</p>
|
||
|
|
<a href="./funwebdev-3rd-ed-cover.jpg">
|
||
|
|
<img src="./funwebdev-3rd-ed-cover-small.jpg" alt="funwebdev-3rd-ed-cover-small">
|
||
|
|
</a>
|
||
|
|
<p>
|
||
|
|
This textbook covers a broad range of topics required for modern web development.
|
||
|
|
</p>
|
||
|
|
<p>
|
||
|
|
<a href="http://www.funwebdev.com">Learn more</a>
|
||
|
|
</p>
|
||
|
|
<h2>First Chapters</h2>
|
||
|
|
<ol>
|
||
|
|
<li>Introduction to Web Development</li>
|
||
|
|
<li>How the Web Works</li>
|
||
|
|
<li>Introduction to HTML</li>
|
||
|
|
<li>Introduction to CSS</li>
|
||
|
|
</ol>
|
||
|
|
</body>
|
||
|
|
|
||
|
|
</html>
|