Latest stories

  • Unordered Lists in HTML

    Use the ul element to create an unordered list in HTML, and the li element to create each item in the list. In addition to containing text, list items can contain inline elements like links and images. They can also […] More

    Read More

  • HTML Head Tag

    Every HTML document should have exactly one head section. This is where we tell things "about" our web pages, such as its title, description, internal style sheet, and external resources it needs. About HTML Head Tag The next piece of […] More

    Read More

  • What is DOCTYPE in HTML5?

    DOCTYPE, the first piece of a webpage, is the doctype line. In HTML5, it looks like this: <!DOCTYPE html>. This species that the webpage is written in HTML, and more particularly in the HTML5 dialect. If we do not specify […] More

    Read More