Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 4

SOP1:Creation of website using HTML5

Input source-
Page1[index.html]
<!doctype html>
<html>
<head>
<meta name="college" content="college profile">
<style>
h1{background-color:yellow;color:green;text-
align:center;font-family:arial}
p{background-color:yellow;color:red;font-
size:20;font-family:arial}
</style>
</head>
<body>
<h1>S B Patil College of science and
commerce</h1>
<p>
<b>Address:</b>
<i>Opposite s b patil public schol,ravet,Pune</i>
<u>This college is the best</u>
</p>
<img src="download.jpg" alt="college image"><br>
<a href="page2.html">Click to enroll</a>
</body>
</html>

Page2[page2.html]
<html>
<head>
<title>Enrollment Form</title>
<meta name="college" content="college
enrollment">
<style>
h1{background-color:purple;color:yellow;text-
align:center;font-family:arial}
</style>
</head>
<body>
<h1>College Enrollment Form</h1>
<form>
Name:<input type="text"><br><br>
Email:<input type="mail"><br><br>
Contact:<input type="tel"><br><br>
<input type="submit" value="submit">
</form>
<a href="index.html">Click for homepage</a>
</body>
</html>
Output source-Page1

Page2

You might also like