This is a repo for subject Web Development 1. In which I am documenting all the details about this subject. It contains HTML, CSS and Javascript.
Note
This subject's grades based on assignment.
Warning
Submit all the assignments.
Important
Email is the best way to contact Faculty.
index.html
<html lang="en">
<head>
<title>Sample page</title>
<meta charset="UTF-8">
<link src="./style.css" rel="stylesheet" type="text/css">
<script src="./script.js"></script>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
style.css
h1{
color: #45SQAA;
font-size: 22px;
}
script.js
alert("Hello from script.js!");
