<html>
  <body>
    <h1><b>Ludo</b><hr></h1>
    <p>Ludo (/ˈljuːdoʊ/; from Latin ludo '[I] play') is a strategy board game for two to four players, in which the players race their four tokens from start to finish according to the rolls of a single die. Like other cross and circle games, Ludo is derived from the Indian game Pachisi. The game and its variations are popular in many countries and under various names.</p>
    <h3>Ludo Board</h3><hr>
    <p>Special areas of the Ludo board are typically coloured bright yellow, green, red, and blue. Each player is assigned a colour and has four tokens in their colour. The board is normally square with a cross-shaped playspace, with each arm of the cross having three columns of squares, usually six per column. The middle columns usually have five squares coloured; these represent a player's home column. A sixth coloured square not on the home column is a player's starting square. At the centre of the board is a large finishing square, often composed of coloured triangles atop the players' home columns (thus depicting "arrows" pointing to the finish).</p>
    <h3><i>Rules</i></h3><hr>
    <h4>OverView</h4>
    <p>Two, three, or four can play, without partnerships. At the beginning of the game, each player's four tokens are out of play and staged in the player's yard (one of the large corner areas of the board in the player's colour). When able to, the players enter their tokens one per turn on their respective starting squares and proceed to race them clockwise around the board along the game track (the path of squares not part of any player's home column). When reaching the square below their home column, a player continues by moving tokens up the column to the finishing square. The rolls of a single die control the swiftness of the tokens, and entry to the finishing square requires a precise roll from the player. The first to bring all their tokens to the finish wins the game. The others often continue to play to determine second-, third-, and fourth-place finishers.</p>
    <h4>GamePlay</h4>
    <p>Each player rolls a die; the highest roller begins the game. Players alternate turns in a clockwise direction. To enter a token into play from its yard to its starting square, a player must roll a six. Players can draw a token from home every time they get a six unless home is empty or move a piece six times. The start box has two own tokens (is doubled). If the player has no tokens yet in play and rolls other than a six, the turn passes to the next player.

Players must always move a token according to the die value rolled. Once players have one or more tokens in play, they select a token and move it forwards along the track the number of squares indicated by the die. If a token advances onto a spot occupied by opponent's token then the opposing token is returned back to its respective home point. This forces the opponent to roll another 6 to take it out of their home and move it again. If a token advances onto a spot occupied by a token of the same colour, then they create something that is called a "block". If an opposing token lands on the same spot as the block, the advancing token is returned back to its respective home point.

If the player cannot draw a token from home, rolling a six earns the player an additional or "bonus" roll in that turn. If the bonus roll results in a six again, the player earns again an additional bonus roll. If the third roll is also a six, the player may not move and the turn immediately passes to the next player.

A player's home column squares are always safe, since no opponent may enter them. In the home column, a player cannot jump over; after one rotation is completed, the player must enter the home and roll the exact number needed to get each token onto the home triangle.</p>
<ul><h2>Ludo</h2>
  <li>Ludo Board</li>
  <li>Rules<ul>
    <li>OverView</li>
    <li>GamePlay</li></ul></li>
  <li>History</li>  
</ul>
  </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.
  • Paragrahs 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>