Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
64 views

IGCSE - Basic HTML Codes

Learn all the HTML codes for the chapter Website Authoring for ICT IGCSE code 0417
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
64 views

IGCSE - Basic HTML Codes

Learn all the HTML codes for the chapter Website Authoring for ICT IGCSE code 0417
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Important HTML Codes for IGCSE

<html>

<head>
<title>HTML Reference</title>
<link rel="stylesheet" type="text/css" href="mystyle.css">
<meta charset="UTF-8">
<meta name="description" content="Web tutorials for IGCSE students">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="author" content="Sarfaraz Mohammed">
<base target="_blank/_self/_parent/_top">
</head>

<body>

<h1>This is heading 1</h1>


<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>

<span class="classname">
<p>My first paragraph.</p>
</span>

<table border="1" width= "100%">


<tr><td>Jill</td><td>Smith</td><td>50</td></tr>
<tr><td>Eve</td><td>Jackson</td><td>94</td></tr>
</table>

<table border="1" width= "100%">


<tr><td colspan="2">A</td><td>B</td></tr>
<tr><td rowspan="2">C</td><td rowspan="2">D</td><td>E</td> </tr>
<tr><td>F</td></tr>
</table>
<ol>
<li>Apple</li>
<li>Orange</li>
<li>Papaya</li>
<li>Grapes</li>
</ol>

<ul>
<li>Apple</li>
<li>Orange</li>
<li>Papaya</li>
<li>Grapes</li>
</ul>

<img src="image.jpg" alt="Description of image" width= "128" height="128">

<audio controls>
<source src="filename.mp3" type="audio/mpeg">
</audio>

<video controls Autoplay Muted Loop>


<source src="filename.mp4" type="video/mp4">
</video>

<a href="http://www.w3schools.com/" target="_blank">Visit W3Schools</a>

<a href="mailto:xyz@example.com?Subject=Welcome%20Friends"> Send Mail</a>

<a name="top"></a>

<a href="#top">Go on top</a>

</body>

</html>

You might also like