<html> <head> <title>About-My School</title> </head> <body bgcolor="sky blue"> <font face="forte"> <marquee style="color:green; font-size:20px;">Welcome to My School Project On The Festival</marquee><hr> <center> <img src="img/head.jpg" style="width:80%; height:200px;"> <br> <a href="home.html"><button style="background-color:gold;height:50px; width:100px;"><font face="forte" font size="4px">Home</font></button></a> <a href="photo.html"><button style="background-color:gold;height:50px; width:100px;"><font face="forte" font size="4px">Photo</font></button></a> <a href="about.html"><button style="background-color:goldenrod;height:50px; width:100px;"><font face="forte" font size="4px">Festival</font></button></a> <a href="message.html"><button style="background-color:gold;height:50px; width:100px;"><font face="forte" font size="4px">Messages</font></button></a> <a href="about us.html"><button style="background-color:gold;height:50px; width:100px;"><font face="forte" font size="4px">About us</font></button></a> <hr> <h1>About The Festival</h1> About The Festivals <br> <br>Durga Puja-Durga Puja, also called Durgotsava and Navaratri, is an annual Hindu or Bengali Hindu festival in the Indian subcontinent that reveres the goddess Durga.<br> <br>Kali Puja-Kali Puja, also known as Shyama Puja or Mahanisha Puja, is a festival dedicated to the Hindu goddess Kali, celebrated on the new moon day of the Hindu month Kartik especially in West Bengal, Odisha, Assam and Bangladesh.<br> <br>Ganesh Chaturthi-Ganesh Chaturthi,also known as Vinayaka Chaturthi, is the Hindu festival that reveres god Ganesha. A ten-day festival, it starts on the fourth day of Hindu luni-solar calendar month Bhadrapada.<br> <br>Holi-Holi is a Hindu spring festival celebrated in India and Nepal, also known as the "festival of colours" or the "festival of love".<br> <center> <hr> <B>My School</B> 2017 © Designed by Pratyay </center> </font> </body> </html>
Write, Run & Share HTML code online using OneCompiler's HTML online Code editor for free. It's one of the robust, feature-rich online Code editor for HTML language, running on the latest version HTML5. Getting started with the OneCompiler's HTML compiler is simple and pretty fast. The editor shows sample boilerplate code when you choose language as HTML
. You can also specify the stylesheet information in styles.css
tab and scripts information in scripts.js
tab and start coding.
HTML(Hyper Text Markup language) is the standard markup language for Web pages, was created by Berners-Lee in the year 1991. Almost every web page over internet might be using HTML.
<!DOCTYPE html>
<html>
and ends with </html>
<h1>
to <h6>
where <h1>
is the highest important heading and <h6>
is the least important sub-heading.<p>..</p>
tag.<a>
tag.
<a href="https://onecompiler.com/html">HTML online compiler</a>
<img>
tag, where src
attribute consists of image name.<button>..</button>
tag<ul>
for unordered/bullet list and <ol>
for ordered/number list, and the list items are defined in <li>
.<a href="https://onecompiler.com/html">HTML online compiler</a>
CSS(cascading style sheets) describes how HTML elements will look on the web page like color, font-style, font-size, background color etc.
Below is a sample style sheet which displays heading in green and in Candara font with padding space of 25px.
body{
padding: 25px;
}
.title {
color: #228B22;
font-family: Candara;
}
<table>
tag.<tr>
tag<th>
tag<td>
tag<caption>
tag<script>
is the tag used to write scripts in HTML<script src="script.js"></script>