The 4 Stages of Web Development
The 4 Stages of Web Development
A broken path:
If the location of the linked page changes, or if it’s name is changed, the link must be updated to reflect the new path, otherwise a 404 (Page Not Found) error will result.
Fully Resolved URL
http://www.art.buffalo.edu/undergraduate/programs.html
Absolute Path
<a href = "http://www.art.buffalo.edu/undergraduate/programs.html">VS</a>
Document Relative Path
<a href = "../undergraduate/programs.html">Undergrad Programs</a>
Root Relative Path
<a href = "/undergraduate/programs.html">Undergrad Programs</a>
<a href="mailto:benny@gmail.com">Email me!</a>
<a href="https://www.google.com/" target="_blank">Go to Google</a>
<h1 id="top">Film-Making Terms</h1>
<a href="#arc_shot">Arc Shot</a><br />
<a href="#interlude">Interlude</a><br />
<a href="#prologue">Prologue</a><br /><br />
<h2 id="arc_shot">Arc Shot</h2>
<p>A shot in which the subject is photographed by
an encircling or moving camera</p>
<h2 id="interlude">Interlude</h2>
<p>A brief, intervening film scene or sequence, not specifically tied to the plot,
that appears within a film</p>
<h2 id="prologue">Prologue</h2>
<p>A speech, preface, introduction, or brief scene preceding
the the main action or plot of a film; contrast to epilogue</p>
<p><a href="#top">Top</a></p>
You can effect all four sizes of the box
Box Model Demo
The total width of the box below is 300px:
width: 250px;
padding: 10px;
border: 5px solid gray;
margin: 10px;
Float Demo
Take the target size from the comp, and divide it
by the size of its containing element—in other
words, its context. The result is the desired size
expressed in relative percentages.
Every row and column can be expressed as a
proportion of their containing elements.
Flexible Type
body {
background-color: #DCDBD9;
color: #2C2C2C;
font: normal 100% Georgia, serif;
}
Not Flexible Type
h1 {
font-size:24px;
font-style: italic;
font-weight: normal;
}
target ÷ context = result
flexible type
body {
background-color: #DCDBD9;
color: #2C2C2C;
font: normal 100% Georgia, serif;
}
h1 {
font-size: 1.5em;
font-weight: normal;
}
target ÷ context = result
flexible type
h1 a {
font: bold 0.458333333333333em Arial, sans-
/* 11px / 24px */
color: #747474;
letter-spacing: 0.15em;
text-transform: uppercase;
text-decoration: none;
}
Not a responsive grid
#page {
width: 960px;
margin: 0 auto;
}
Responsive Grid
#page {
width: 90%
margin: 0 auto;
}