Wednesday 9 August 2017

HTML(Bullets,input type, attribute, semantic tag)

HTML(Bullets,input type, attribute, semantic tag)

Let's check out the Types of bullets in Hypertext Markup Language (HTML).

An unordered list starts with the <ul> tag. Each list item starts with the <li> tag.
The list items will be marked with bullets (small black circles) by default:

UL stands for unordered list 
OL stands for order list

You can change the styling of your ordered lists too, with the same attribute syntax as before, just using different values. You can do Roman numerals, letters, and both of the above in small characters. The full list:


  1. ol type="A"
  2. ol type="a"
  3. ol type="I"
  4. ol type="i"

Changing the strat-point

If you need to start the count at a number other than 1, you just add another attribute, like so:
<ol start="5">

<ul style="list-style-type:squre">

                    









 

 

Attribute

step, min, max, maxlength, placeholder, required, autofocus
Semantic tag in HTML
<header>, <nav>, <article>, <selection>, <main>, <footer>, <time>, <summary>, <mark>, <figure><figcaption>, <details>

Featured post

A Look At the CSS Selectors

A Look At the CSS Selectors As seen earlier, now we know that a Cascading Style Sheet (CSS) forms an integral part of web design . In th...

Search This Blog

Translate