+ All Categories
Home > Education > Intro to HTML

Intro to HTML

Date post: 14-Jun-2015
Category:
Upload: career-development-service-university-of-leicester
View: 388 times
Download: 3 times
Share this document with a friend
Popular Tags:
13
www.le.ac.uk/studentdevelopment Student Development Intro to HTML
Transcript
Page 1: Intro to HTML

www.le.ac.uk/studentdevelopment

Student Development

Intro to HTML

Page 2: Intro to HTML

www.le.ac.uk/studentdevelopment

Paragraph Mark-up

<P> Start Paragraph

<STRONG> Bold

<I> Italics

<STRONG><I> Bold and Italics

</P> End Paragraph

</br> Line Break

Page 3: Intro to HTML

www.le.ac.uk/studentdevelopment

I’ve started so I must finish!

<P>

</P>

<STRONG>

</STRONG>

Write Your Text Here

Page 4: Intro to HTML

www.le.ac.uk/studentdevelopment

Headings

<H1>Heading One</H1> Heading One<H2>Heading Two</H2> Heading Two

<H3>Heading Three</H3> Heading Three

<H4>Heading Four</H4> Heading Four

<H5>Heading Five</H5> Heading Five

We use different heading styles to break-up page content

Increased number

= Smaller heading

Page 5: Intro to HTML

www.le.ac.uk/studentdevelopment

TablesTables can be used to arrange content in a more

organised or attractive way

Page 6: Intro to HTML

www.le.ac.uk/studentdevelopment

Tables<table class="plain">

</table>

<tbody>

</tbody>

<tr>

</tr>

<td> </td><td> </td><td> </td>

<tr>

</tr>

<td> </td><td> </td><td> </td>

Page 7: Intro to HTML

www.le.ac.uk/studentdevelopment

Tables<table class="plain">

</table>

<tbody>

</tbody>

<tr>

</tr>

<td> </td><td> </td><td> </td>

<tr>

</tr>

<td> </td><td> </td><td> </td>

ABC

Row

Cell

Page 8: Intro to HTML

www.le.ac.uk/studentdevelopment

Tables – Merging Cells<table class="plain">

</table>

<tbody>

</tbody>

<tr>

</tr>

<td> </td><td> </td><td> </td>

<tr>

</tr>

<td> </td><td> </td><td> </td>

Page 9: Intro to HTML

www.le.ac.uk/studentdevelopment

Tables – Merging Cells<table class="plain">

</table>

<tbody>

</tbody>

<tr>

</tr>

<td> </td>

<tr>

</tr>

<td> </td><td> </td><td> </td>

colspan

<td colspan=“2”> </td>

Number of Cells needs to be equal

Delete Replace Cell

Page 10: Intro to HTML

www.le.ac.uk/studentdevelopment

Tables – Merging Cells<table class="plain">

</table>

<tbody>

</tbody>

<tr>

</tr>

<td> </td><td> </td>

<tr>

</tr>

<td> </td><td> </td>

rowspan

<td rowspan=“2”> </td>

Delete Replace

Cell

Page 11: Intro to HTML

www.le.ac.uk/studentdevelopment

Tables – Merging Cells<table class="plain">

</table>

<tbody>

</tbody>

<tr>

</tr>

<td> </td><td> </td>

<tr>

</tr>

<td> </td><td> </td>

rowspan

<td rowspan=“2”> </td>

colspan

Text Text

Page 12: Intro to HTML

www.le.ac.uk/studentdevelopment

Tables – Merging Cells<table class="plain">

</table>

<tbody>

</tbody>

<tr>

</tr>

<td> </td>

<tr>

</tr>

<td> </td><td> </td><td> </td>

rowspan

</td>

colspan

<td colspan=“2”>

Title across all the row

Text Text Text

Page 13: Intro to HTML

www.le.ac.uk/studentdevelopment

Strange HTML

&nbsp<table class="plain">

</table>

<tbody>

</tbody>

<tr>

</tr>

<td> </td><td> </td><td> </td>

<tr>

</tr>

<td> </td><td> </td><td> </td>

&nbsp TextText

Text

Text


Recommended