Omar Patel
Software developer/instructor
Aka DES261
So, I'd like to get feedback about how I'm teaching and I'm willing to make it public. I take the feedback seriously, since it not only helps me, but also future students.
Please take the time to go to ratemyprofessors.com and write an honest review based on clarity, easiness and helpfulness.
YOUR REVIEW WILL NOT AFFECT YOUR GRADE WHATSOEVER (you have this in writing for proof), SO FEEL FREE TO BE OPEN ABOUT WHAT YOU WRITE!
Finish 1 page of HTML. That is, there should be a single page of HTML that represents a page on your comp.
Please email me your html page to omarpatel123@gmail.com.
Hopefully, you've already completed your first HTML page. I'll be giving feedback on your page as you work on your projects. Let's continue working on building them up. I'll be here to help you out, so please ask me questions if you're stuck!
HTML: http://www.w3.org/community/webed/wiki/HTML/Elements
CSS: http://www.w3.org/community/webed/wiki/CSS/Properties
http://www.w3schools.com/css/css_navbar.asp
You now have 2 choices:
1. If you feel comfortable with building up your project based on the knowledge you learned, simply open up sublime text and start building it!
2. If you're still confused on how to implement the HTML & CSS you learned, you can either:
a) Go to the https://www.codecademy.com/en/skills/make-a-website tutorial and use that to learn how to implement the skills you just gained.
b) Ask me and I can help show you the steps you need to take to construct your project.
Directory Structure
HTML files
index.html
assets
CSS files
JavaScript Files
images
HTML
CSS
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<link rel="stylesheet" type="text/css" href="stylsheet.css">
</head>
<body>
</body>
</html>body {
color: gray;
font-size: 12px
}<header id="header">
<a href="index.html"><img class="house_logo" src="assets/images/house.png"></a>
<nav id="nav">
<ul>
<li><a href="html_files/contact.html">Contact Us</a></li>
<li><a href="html_files/about.html">About</a></li>
<li><a href="html_files/property_management.html">Property Management</a></li>
<li><a href="html_files/sellers.html">Sellers</a></li>
<li><a href="html_files/buyers.html">Buyers</a></li>
<li><a href="index.html">Home</a></li>
</ul>
</nav>
</header>Site: http://osp123.github.io/Dad_site/
Code: https://github.com/OSP123/Dad_site
Now that you have finished the HTML for a single page, I'd like you to finish up up at least another 2 HTML pages for your project. I've given you more time in class to make up for the increase in the breadth of the assignment.
No Quiz, just work on projects!
By Omar Patel