- Now, we are going to write a simple html program with the following details.
- "Name,class,subject,college".
- Name will be in "bold", "class" will be in italic, "subject" will be both bold and italic and "college" will be underlined.
- We'll also create a hyperlink for "www.mashable.com" and title of our page will be "My first HTML page".
Here we go...
<html>
<title>My first HTML page
</title>
<body>
<b>Michael Finestone<br>
<i>BTech<br>
<b><i>Web Technologies<br>
<u>St Mary's College<br>
<a href="http://www.mashable.com">Click here</a>
</body>
</html>