IGCSE - Basic HTML Codes
IGCSE - Basic HTML Codes
<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>
<span class="classname">
<p>My first paragraph.</p>
</span>
<ul>
<li>Apple</li>
<li>Orange</li>
<li>Papaya</li>
<li>Grapes</li>
</ul>
<audio controls>
<source src="filename.mp3" type="audio/mpeg">
</audio>
<a name="top"></a>
</body>
</html>