Web Design for Everybody

Basics of Web Development & Coding

Eric Ellingboe
Portfolio

This Specialization covers how to write syntactically correct HTML5 and CSS3, and how to create interactive web experiences with JavaScript. Mastering this range of technologies allows you to develop high quality accessible web sites that work seamlessly on mobile, tablet, and large screen browsers. During the capstone you develop a professional-quality web portfolio demonstrating growth as a web developer and knowledge of accessible web design. This includes the ability to design and implement a responsive site that utilizes tools to create a site accessible to a wide audience, including those with visual, audial, physical, and cognitive impairments.

Introduction to HTML5

This first course is designed to help the novice who wants to gain confidence and knowledge learning web design. It covers the theory, the coding, and the deployment. There will be an emphasis on adhering to syntactic standards for validation and semantic standards to promote wide accessibility. This course is specifically for those who would like a step-by-step of the basics. The course culminates in a small final project that will require the completion of a very simple page with links and images.

Final Project

The project was to use the reference image of a web page and create you r own version replacing all of the highlighted info with your own information.

Final profect web page.
Reference web page.
HTML Code Sample
    			 
  					
<head>
    <meta charset="UTF-8">
    <title>HTML5project</title>
</head>

<body>
	<header>
		<h1>Eric Ellingboe</h1>
		<nav>
			<a href="#FavoriteFoods">One</a> 
			<a href="#Achievements">Two</a> 
			<a href="#MoreAboutMe">Three</a> 
			<a href="http://www.intro-webdesign.com" target="_blank">Intro to Web Design</a>
		</nav>
	</header>

	<section>
		<a id="FavoriteFoods">
		<h2>Favorite Foods</h2></a>
		<ul>
			<li>Cheese Curds</li>
			<li>Pizza</li>
			<li>Cobb Salad</li>
			<li>Lemon Meringue Pie</li>
		</ul>
	</section>

	<section>
		<a id="Achievements">
		<h2>Achievements</h2></a>
		<p>
			Progress in this course (100%)<progress value="100" max="100"></progress><br>
			Progress in this Specialization capstone (20%)<progress value="20" max="100"></progress><br>
			Progress in life goals (75%)<progress value="75" max="100"></progress>
		</p>
	</section>

	<section>
		<a id="MoreAboutMe">
		<h2>More About Me</h2></a>
		<details>
			<summary>My Childhood</summary>
			I grew up in rural Western Wisconsin. I loved the hills, the woods and the lakes; we spent a lot of time outdoors.
		</details>
	</section>

	<footer>
		<img src="http://www.intro-webdesign.com/images/newlogo.png" alt="WD4E logo">This page was created by Eric Ellingboe &amp; Colleen van Lent. To learn more about web design, visit 
		<a href="http://www.intro-webdesign.com" target="_blank">Intro to Web Design</a>.
	</footer>
</body>
  					
				
  			

Grading and Certification

My grade for this courseIntroduction to HTML5is:

92.5% with 100% on the project

Course Certificate.