Page 294 - Web Applications (803) Class 12
P. 294
Projects
PROJECT 1
A simple HTML website developed using HTML, CSS and JavaScript. The JavaScript code is used to display current date
and time.
File1: Index.html
<html>
<head>
<link rel=”stylesheet” href=”styles.css”>
<title>Home</title>
</head>
<body>
<header>
<h1>Home Page</h1>
<nav>
<ul>
<li><a href=”index.html”>Home</a></li>
<li><a href=”about.html”>About</a></li>
<li><a href=”contact.html”>Contact</a></li>
</ul>
</nav>
</header>
292 Touchpad Web Applications-XII

