COM414
Dr. Daniel Kelly
Internet Technologies
<h1> Big heading here </h1>
<h2>,<h3>,<h4>,<h5>,<h6>
<p> Paragraph here... </p>
Paragraph here...
<p>This is a paragraph with <strong>important</strong> text</p>
This is a paragraph with important text.
<h1>
<h6>
<p>
<strong>
<em>
<ol>
<li>Car
<ul>
<li>Ford</li>
<li>Audi</li>
<li>BMW</li>
</ul>
</li>
<li>Boat</li>
<li>Plane</li>
</ol>
<img src="dog.jpg">
<a href="url">Link Text</a>
<a href="www.google.com">Click here to go to Google</a>
<a href="www.twitter.com">Click here to go to Twitter</a>
Images often come with captions.
HTML uses <figure> element to contain an <img> and a <figcaption> so that the two are associated
Images often come with captions.
<figure>
<img src="ned.jpg">
<br />
<figcaption>
Brace Yourself. Assignments are coming!!!
</figcaption>
</figure>
<table>
e.g. Football Results, stocks, timetables, budgets
<table>
<tr>
<td>myDataHere</td>
<td>myOtherData</td>
</tr>
</table>
myDataHere | myOtherData |
Table Row
Table Data
Table Data
<table>
<tr>
<th>Country</th>
<th>Population</th>
</tr>
<tr>
<td>China</td>
<td>1,384M</td>
</tr>
<tr>
<td>India</td>
<td>1,296M</td>
</tr>
</table>
Country | Population |
---|---|
China | 1,384M |
India | 1,296M |
Table Row
Table Row
Table Row
Table Heading
Table Heading
Data (Column1)
Data (Column2)
<table>
<thead>
<tr>
<th>Country</th>
<th>Population</th>
</tr>
</thead>
<tbody>
<tr>
<td>China</td>
<td>1,384M</td>
</tr>
<tr>
<td>India</td>
<td>1,296M</td>
</tr>
</tbody>
</table>
Table Head
Table Body
Country | Population |
---|---|
China | 1,384M |
India | 1,296M |
<form action="/where-to-send" method="post">
<!-- Different Inputs will go here -->
</form>
<input type="typeOfInput">
<input> element used to create several form control. The value of the type determines what kind of input is created
<input type="text">
<input type="typeOfInput">
<input type="button">
<input type="text">
<input type="color">
<input type="checkbox">
<input type="datetime-local">
<input type="file">
<input type="text" placeholder="username">
placeholder attribute
Specifies a short hint that describes the expected value of an input field
(e.g. a sample value or a short description of the expected format)
<input type="text" name="myname">
name attribute
Specifies the name of an input element
Is used to reference the data entered in the input later
<!DOCTYPE html>
<html>
<head>
<title>My First Form</title>
</head>
<body>
<h1>Sign In Form:</h1>
<form action="http://wikipedia.org/">
<input type="text" placeholder="username" name="username">
<input type="password" placeholder="password" name="password">
<input type="submit">
</form>
</body>
</html>
<label>Username:
<input type="text">
</label>
Defines a label for an input element
<form action="/sign-in-url" method="post">
<label>Username: <input type="text"></label>
<label>Password: <input type="password"></label>
<input type="submit">
</form>
Task: Recreate the input form below
<form method="post">
<label>Email: <input type="email" placeholder="email" required></label>
<label>Password: <input type="password" placeholder="password" required></label>
<input type="submit">
</form>
<input type="radio">
<label>RadioButton1: <input type="radio"></input></label>
<label>RadioButton2: <input type="radio"></input></label>
<label>RadioButton2: <input type="radio"></input></label>
<form>
<label>Male: <input type="radio" name="gender"></input></label>
<label>Female: <input type="radio" name="gender"></input></label>
</form>
Link radio buttons together by giving them the same value for the name attribute
<select>
<option>Item 1</option>
<option>Item 2</option>
<option>Item 3</option>
</select>
<textarea></textarea>
<textarea row="10" cols="10"></textarea>
<form>
<p>What is your student status:</p>
<label>Undergrad: <input type="radio" name="status"></label>
<label>Postgrad: <input type="radio" name="status"></label>
<p>What year are you in?</p>
<select>
<option>First</option>
<option>Second</option>
<option>Third</option>
<option>Fourth</option>
</select>
<p>Other comments?</p>
<textarea></textarea>
<button>submit!</button>
</form>
However, notice that data for the dropdown and text area are not submitted
<form>
<p>What is your student status:</p>
<label>Undergrad: <input type="radio" name="status"></label>
<label>Postgrad: <input type="radio" name="status"></label>
<p>What year are you in?</p>
<select name="year">
<option>First</option>
<option>Second</option>
<option>Third</option>
<option>Fourth</option>
</select>
<p>Other comments?</p>
<textarea name="comments"></textarea>
<button>submit!</button>
</form>
status=on&year=2&comments=mycomments
<form>
<p>What is your student status:</p>
<label>Undergrad:
<input type="radio" name="status" value="undergrad">
</label>
<label>Postgrad:
<input type="radio" name="status" value="postgrad">
</label>
<p>What year are you in?</p>
<select name="year">
<option value="1">First</option>
<option value="2">Second</option>
<option value="3">Third</option>
<option value="4">Fourth</option>
</select>
<p>Other comments?</p>
<textarea name="comments"></textarea>
<button>submit!</button>
</form>
Text
Text
Text
index.html
images.html
contactus.html
index.html
images.html
contactus.html
Cascading Style Sheets
Add Some Style
Dr. Daniel Kelly
A helpful way to understand CSS is to imagine a box surrounding every HTML element
<body>
<h1>Far Far Away</h1>
<p>Far far away, <em>behind the word mountains</em>, far from the
countries Vokalia and Consonantia, there live the blind texts.
Separated they live in Bookmarksgrove right at the coast of the
Semantics, a large language ocean. A small river named Duden flows
by their place and supplies it with the necessary regelialia.</p>
<p>It is a paradisematic country, in which roasted parts of sentences
fly into your mouth. Even the all-powerful <strong>Pointing</strong>
has no control about the blind texts it is an almost unorthographic life.
One day however a small line of blind text by the name of Lorem Ipsum
decided to leave for the far World of Grammar.</p>
<p>The Big Oxmox advised her not to do so, because there were thousands of
bad Commas, wild Question Marks and devious Semikoli, but the
<strong>Little Blind Text</strong> didn’t listen. She packed her seven versalia,
put her initial into the belt and made herself on the way.</p>
</body>
: Block Level Element
: Inline Element
CSS allows us to create rules that control the way each individual box (and contents) is presented
<body>
<h1>Far Far Away</h1>
<p>Far far away, <em>behind the word mountains</em>, far from the
countries Vokalia and Consonantia, there live the blind texts.
Separated they live in Bookmarksgrove right at the coast of the
Semantics, a large language ocean. A small river named Duden flows
by their place and supplies it with the necessary regelialia.</p>
<p>It is a paradisematic country, in which roasted parts of sentences
fly into your mouth. Even the all-powerful <strong>Pointing</strong>
has no control about the blind texts it is an almost unorthographic life.
One day however a small line of blind text by the name of Lorem Ipsum
decided to leave for the far World of Grammar.</p>
<p>The Big Oxmox advised her not to do so, because there were thousands of
bad Commas, wild Question Marks and devious Semikoli, but the
<strong>Little Blind Text</strong> didn’t listen. She packed her seven versalia,
put her initial into the belt and made herself on the way.</p>
</body>
selector
{
property: value;
}
selector
property
: selects existing HTML
: applies style to selected HTML
h1
{
color: pink;
}
Changes color text for all h1's to pink
selector
{
property: value1;
anotherproperty: value2;
}
Change style of multiple aspects of element at once
p
{
color: red;
background-color: blue;
}
Change text color to red and background color to blue for all <p> elements
/*Make all h1's in the html purple and 50px font*/
h1{
color: purple;
font-size: 50px;
}
/*Make all img's in the html have 2px red border*/
img{
border-color: red;
border-size: 2px;
}
<!DOCTYPE html>
<html>
<head>
<title>CSS Demo</title>
<link rel="stylesheet" type="text/css" href="myfirststyle.css">
</head>
<body>
<h1>Heading here</h1>
<h4>Sub-heading here</h4>
<p>Body text here.</p>
</body>
</html>
myhtmlfile.html:
myfirststyle.css:
h1{
color: red;
}
h4{
color: green;
}
Result on Browser:
h1
{
color: red;
}
h2
{
color: green;
}
h1
{
color: red;
}
h2
{
color: green;
}
h1
{
color: red;
}
h1
{
color: #000000;
}
h2
{
color: #FF1493;
}
#000000
#000000
h1
{
color: rgb(0, 255, 0);
}
h2
{
color: rgb(10, 99, 150);
}
h1
{
color: rgba(0, 255, 0, 1);
}
h2
{
color: rgba(10, 99, 150,.3);
}