HTML Test Preparation

To prepare for the HTML test, I did a little bit research and create a ‘html page flow path’.

‘HTML PAGE FLOW PATH’

<html>

 

<head>

<title>Page One/Two(for example)</title>

</head>

 

Heading level 1&2

<h1>Two</h1>

<h2> Pic</h2>

 

<body>

Line breaks <br>

Paragraph <p> </p>

link tag <a href=“URL”>text</a>

image tag <img src=“URL”>

image link tag <a href=“URL”><img src=“URL”></a>

align tag <p style=“text-align: center/right/left;”><img src=“URL”></p>

</body>

 

</html>

 

Leave a Reply