Michael Messina is a technology teacher and community engagement architect coaching students to solve real-world problems with computing and information and communication technologies (ICTs). Michael holds a Master’s in Urban and Environmental Policy and Planning from Tufts University where he concentrated his studies on how ICTs could enhance urban planning and public participation. His thesis research project enabled him to collaborate with community organizations to test crowdsourcing as a problem solving model for government and nonprofits. He worked at City Year where he pioneered their social media program including the development and implementation of corporate policies, social media training and a new management structure which encompassed 20 locations. Mr. Messina was also a web designer at MIT and a systems manager in U.S. Air Force where he received awards for his leadership and performance. Michael graduated magna cum laude from Emerson College with a Bachelor's in Marketing Communication and Speech.
Before we get started with Web Design and Development, please complete the following assignment. You will be graded on this because it's that important.
You are not going to know everything that goes into the website and that is okay.
This is a starting point to help you get an idea of all the different components that make a website work. Feel free to use this website or any resource on the Internet as a resource (use links to cite work).
<!DOCTYPE html>
<html>
<head>
<title>
<meta>
<body>
<a href="">
<li>,
<ul>
<nav>
<section>
<img>
<p>
<h1>
<!DOCTYPE html> <html> <head> <title>Title of your page</title> </head> <body> </body> </html>
<!DOCTYPE html> <html> <head><!--START HEAD--> <!--LINK TO --> <link rel="stylesheet" type="text/css" href="main.css"> <title>Website title here - page title here</title> </head><!--END HEAD--> <body> <!--BODY STARTS--> <div class="main"> <!--MAIN STARTS--> <div class="container"><!--CONTAINER STARTS--> <header>This is the header</header> <!--NAVIGATION--> <nav> <ul> <li><a href="index.html">Home</a></li> <li><a href="about.html">About</a></li> <li><a href="services.html">Services</a></li> <li><a href="location.html">Location</a></li> <li><a href="contact.html">Contact</a></li> </ul> </nav> <!--END NAVIGATION--> <div class="content"><!--START CONTENT DIV--> </div> <!--END CONTENT DIV--> <footer>This is my footer</footer> </div> <!--END CONTAINER DIV--> </div> <!--END MAIN DIV--> </body><!--END BODY--> </html>
.main{ margin:0 auto; } body{ background: #F5F5F5 /*Try ColorZilla, Google via Chrome Store to pick colors*/ } header{ width:960px; height:125px; background-color:#4A9CEB; margin:0 auto; position:relative; margin-top: 0px; } nav{ width:100%; height:40px; background-color:#FEFFFF; } ul{ padding-top:8px;margin:0; } li{ display:inline; list-style:none; padding:5px; margin:4px; } a:link{ color:blue; font-size:20px; font-family:Arial, Times New Roman, serif; text-decoration: none; } a:visited{ color:blue; font-size:20px; font-family:Arial, Times New Roman, serif; text-decoration: none; } a:hover{ color:red; font-size:20px; font-family:Arial, Times New Roman, serif; text-decoration:none; } a:active{ color:blue; font-size:20px; font-family:Arial, Times New Roman, serif; text-decoration: none; } .container{ width:960px; height:850px; background-color:#627486; margin:0 auto; position: relative; } .content{ width:920px; height:550px; background-color:#FFFFFF; margin-left:20px; margin-right:20px; margin-top:10px; margin-bottom:10px; position: relative; } #homecontent1 { width:750px; height:300px; background-color:lightgray; margin-top:5px; margin-left:35px; padding:5px; font-size:20px; font-family:sans-serif; position: relative; display:block; } footer{width:100%; height:150px; background-color:#A4CFF8; position:relative; bottom:0px; }
HTML (Hyper-Text Markup Language) is the language used to create documents on the web. It is considered the programmatic structure of the web page.1
HTML is considered one of the three main programming languages that front-end web developers use:
JavaScript is also providing frameworks for some advanced web applications these days including: