9/13
Overview + Broadcasting
9/27
Problem Solving Independently
10/4
Project 1:
Autobio
10/11
Introduction to Web Design
10/18
HTML/CSS Unit Analysis
10/25
Project Presentations
The structure. HTML directs which elements on a page go where. Aka, this box about that box, this title to the left of this picture.
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
</head>
<body>
<h1>This is a page heading</h1>
<h2>This is a sub heading</h2>
<p>This is normal text for a website</p>
<p>You can have the same tag type multiple times</p>
</body>
</html>
Goal: We are going to build a shout-out website that you can use to give positive recognition to students. Build a title, a sub title, and a description.
The design of a page. CSS controls colors, typography, spacing, and dimensions.
body{
background-color: yellow;
}
h1{
font-size: 30px;
}
p{
color: red;
}
background-color: #FFF6C5;
A class is an attribute that puts elements in groups.
<p class='shout_out'>
Shout out to Tamia for her Grit during guided practice.
</p>
<p class='teacher_name'>
Ms. Moynihan
</p>
http://www.w3schools.com
The tag is img, but before you close the opening tag, you are going to add an attribute, which a way to add information to a tag.
src (source) and set it equal to the url you copied. (always put attribute values in quotes)
<img src='http://scienceservinghumanity.us/wp-content/gallery/sidebar01/asimo-walk.jpg'/>