• Homework
  • Thirds
  • Upper Thirds
  • Fourth
  • Divisions
    • ICT
    • Computer Science
  • Fifth
  • Lower Sixth
  • Upper Sixth
    • Upper Sixth Theory
  • Blog
  • Careers
  • Unity
  • Networking
computinglesson.com

HTML and CSS

  • Experiment with CodePen
  • Learn at W3Schools

The Basics - HTML

<html>
   <head>
      <title>This is a webpage title and it appears in the browser chrome</title>
   <head>
   <body>

      <p>
      <The main part of the webpage appears between the body tags><p>
   </body>
<html>

Essential Tags

<p>       <!--- Paragraph -->
<br>      <!--- Line break without a new paragraph --->
<strong>  <!--- used to bold text ---->
<em>      <!--- used to italicise text -->
<h1>      <!--- H1 to H9 are heading tags -->
<ol>      <!--- Ordered (numbered) lists -->
<li>      <!--- List item within a list --->
<ul>      <!--- Unordered (Bulleted) lists --->
<a href="http://www.google.co.uk>Link to Google</a>     <!--- Hyperlink --->
<img src="myimage.gif" alt="test image"/>               <!--- Image ---->

Introduction to CSS

Powered by Create your own unique website with customizable templates.