Thursday, March 15, 2018

Web Page Designing with HTML Experiment No. 1



Create web Page using structure tags to display sample message.

<!doctype html>
<html>
<head>
<title>First Example</title>
</head>
<body>
Welcome to HTML World
</body>
</html>