<html>
  <head>
    <title>WELCOME</title>
  </head>
  <BODY BGCOLOUR="black">
    <FONT COLOUR="white">Time from ss to year
       <UL TYPE="square">
      <li>1st  Hour  [60        Minutes=3600  Seconds=360000 ss]
      <li>2nd  Hour  [120       Minutes=7200  Seconds=720000 ss]
      <li>3rd  Hour  [240       Minutes=14400 Seconds=1440000 ss]
      <li>4th  Hour  [480       Minutes=Seconds=ss]
      <li>5th  Hour  [960       Minutes=Seconds=ss]
      <li>6th  Hour  [1920      Minutes=Seconds=ss]
      <li>7th  Hour  [3840      Minutes=Seconds=ss]
      <li>8th  Hour  [7680      Minutes=Seconds=ss]
      <li>9th  Hour  [15360     Minutes=Seconds=ss]
      <li>10th Hour  [30720     Minutes=Seconds=ss]
      <li>11th Hour  [61440     Minutes=Seconds=ss]
      <li>12th Hour  [122880    Minutes=Seconds=ss]
      <li>13th Hour  [245760    Minutes=Seconds=ss]
      <li>14th Hour  [491520    Minutes=Seconds=ss]
      <li>15th Hour  [983040    Minutes=Seconds=ss]
      <li>16th Hour  [1966080   Minutes=Seconds=ss]
      <li>17th Hour  [3932160   Minutes=Seconds=ss]
      <li>18th Hour  [7864320   Minutes=Seconds=ss]
      <li>19th Hour  [15728640  Minutes=Seconds=ss]
      <li>20th Hour  [31457280  Minutes=Seconds=ss]
      <li>21st Hour  [62914560  Minutes=Seconds=ss]
      <li>22nd Hour  [125829120 Minutes=Seconds=ss]
      <li>23rd Hour  [251658240 Minutes=Seconds=ss]
      <li>24th Hour  [503316480 Minutes=Seconds=ss]
      <li>Monday        [1st Day]
      <li>Tuesday       [2nd Day]
      <li>Wednesday     [3rd Day]
      <li>Thursday      [4th Day]
      <li>Friday        [5th Day]
      <li>Saturday      [6th Day]
      <li>Sunday        [7th Day]
      <li>1st Week      [7  Days]
      <li>2nd Week      [14 Days]    
      <li>3rd Week      [21 Days]
      <li>4th Week      [28 Days]
      <li>1st  Month     [31 Days=31  Days]
      <li>2nd  Month     [29 Days=60  Days]
      <li>3rd  Month     [31 Days=91  Days]
      <li>4th  Month     [30 Days=121 Days]
      <li>5th  Month     [31 Days=151 Days]
      <li>6th  Month     [30 Days=182 Days]
      <li>7th  Month     [31 Days=213 Days]
      <li>8th  Month     [31 Days=244 Days]
      <li>9th  Month     [30 Days=274 Days]
      <li>10th Month     [31 Days=305 Days]
      <li>11th Month     [30 Days=335 Days]
      <li>12th Month     [31 Days=366 Days]
      <li>1st  Year      [12 Months=366days=8784]
      <li>2nd  Year      
      <li>3rd  Year
      <li>4th  Year
      <li>5th  Year
      <li>6th  Year
      <li>7th  Year
      <li>8th  Year
      <li>9th  Year
      <li>10th Year
    </ol>
  </body>
</html> 

HTML Online Editor & Compiler

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.

About HTML

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.

Syntax help

Fundamentals

  • Any HTML document must start with document declaration <!DOCTYPE html>
  • HTML documents begin with <html> and ends with </html>
  • Headings are defined with <h1> to <h6> where <h1> is the highest important heading and <h6> is the least important sub-heading.
  • Paragraphs are defined in <p>..</p> tag.
  • Links are defined in <a> tag.

    Example:

    <a href="https://onecompiler.com/html">HTML online compiler</a>
    
  • Images are defined in <img> tag, where src attribute consists of image name.
  • Buttons are defined in <button>..</button> tag
  • Lists are defined in <ul> for unordered/bullet list and <ol> for ordered/number list, and the list items are defined in <li>.

HTML Elements and Attributes

  • HTML element is everything present from start tag to end tag.
  • The text present between start and end tag is called HTML element content.
  • Anything can be a tagname but it's preferred to put the meaningful title to the content present as tag name.
  • Do not forget the end tag.
  • Elements with no content are called empty elements.
  • Elements can have attributes which provides additional information about the element.
  • In the below example, href is an attribute and a is the tag name.

    Example:

    <a href="https://onecompiler.com/html">HTML online compiler</a>
    

CSS

CSS(cascading style sheets) describes how HTML elements will look on the web page like color, font-style, font-size, background color etc.

Example:

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;
}

HTML Tables

  • HTML Tables are defined in <table> tag.
  • Table row should be defined in <tr> tag
  • Table header should be defined in <th> tag
  • Table data should be defined in <td> tag
  • Table caption should be defined in <caption> tag

HTML-Javascript

  • Javascript is used in HTML pages to make them more interactive.
  • <script> is the tag used to write scripts in HTML
  • You can either reference a external script or write script code in this tag.

Example

<script src="script.js"></script>