SOP 1 Creation of Website Using HTML 5
SOP 1 Creation of Website Using HTML 5
Coding/Program:
Index.html
<!DOCTYPE html>
<head><title>index page </title>
<meta charset="UTF-8">
<meta name="author" content="physical tags">
<style>
body{background-color:pink}
h1{text-align:center; color:blue}
p{font-size:15px; color:green}
</style>
</head>
<body>
<h1>SMCS college,Dapoli</h1>
<p>Our college is one of the best college in Ratnagiri district. I love my college a
lot because it possesses all the qualities of an ideal college. we have excellent
course curriculum and faculty members</p><br>
<p>My college Principal is very particular in appointing the lectures. It is my firm
belief that education is the best way to enlighten young minds and it can only be
imparted in a good . environment having prosperous thinking . My college has all
what it takes. </p>
<b><u>3 Faculties of college</u></b><br>
<li>Commerce</li><br>
<li>Science</li><br>
<li>Arts</li><br>
<b><u>Extra Facilities provided by college</u></b><br>
<li>Library</li><br>
<li>Science Lab</li><br>
<a href="page2.html">Click here for second page</a>
</body>
</html>
Page2.html
<!DOCTYPE html>
<head><title>page 2 </title>
<meta charset="UTF-8">
<meta name="author" content="physical tags">
<style>
body{background-color:pink}
h1{text-align:center; color:blue;border-style:dashed}
</style>
</head>
<body>
<h1>Feedback form</h1>
<form>
Enter your name:<input type="text" required><br>
Email id:<input type="email" ><br>
<input type="submit" value="submit"><br>
</form>
<a href="index.html">click here to return on index page</a>
</body>
</html>
Output: