Course Content
About HTML and History
HTML, or HyperText Markup Language, is the standard markup language used to create and design web pages. It forms the structural foundation of websites, allowing developers to organize content, embed multimedia, and link web pages seamlessly. History of HTML: 1989: Tim Berners-Lee proposed the idea of a "hypertext system" while working at CERN. 1991: The first version of HTML was introduced with 18 tags. 1995: HTML 2.0 was released, establishing formal specifications. 1997-1999: HTML 3.2 and HTML 4.01 introduced styling and scripting support. 2014: HTML5 became the latest standard, offering robust support for multimedia, semantics, and APIs. Today, HTML continues to evolve, adapting to the needs of modern web development, making it a core technology alongside CSS and JavaScript.
0/2
HTML Full Tutorial
About Lesson

1. Inline Styling

You can directly specify font styles within an HTML tag using the style attribute.

<p style=”font-family: Arial; font-size: 16px; color: blue;”>This is a styled paragraph.</p>

  • font-family: Sets the font type (e.g., Arial, Times New Roman, etc.).
  • font-size: Adjusts the font size.
  • color: Changes the text color.

    2. Using <font> Tag

    The <font> tag was used in older versions of HTML to change the font style but is now deprecated. It’s better to use CSS.

    <font face=”Verdana” size=”4″ color=”red”>Deprecated font styling</font>

    3. Internal CSS

    Define a <style> block inside the <head> section of your HTML document.