# Q1

**Create HTML document with following formatting – Bold, Italics, Underline, Colors, Headings, Title, Font and Font Width, Background, Paragraph, Line Brakes, Horizontal Line, marquee text.**

{% hint style="info" %}
Tags that will be used:

* \<b>
* \<i>
* \<u>
* \<style="{color, font, font-family, bgcolor}": "value";>
* \<h{1-6}>
* \<p>
* \<br>
* \<hr>
* \<marquee>&#x20;

[Browse Source Code](https://github.com/MJK618/InternetTechnologies/blob/main/HTML%20%26%20CSS/html-1.html)
{% endhint %}

### Code

```markup
<html>

<head>
  <title>This is Title - html-1</title>
  <style>
    .p {
      font: 105px;
    }
  </style>
</head>

<body>

  <center>

    <h1>h1 Heading</h1>
    <h2>h2 Heading</h2>
    <h3>h3 Heading</h3>
    <h4>h4 Heading</h4>
    <h5>h5 Heading</h5>
    <h6>h6 Heading</h6>

    <b> Bold Text </b><br>
    <i> Italic Text </i><br>
    <u> Underlined Text </u><br>

    <p style="color:red;">I am red</p>

    <marquee width="100%" direction="right" height="100px">
      This is a marquee text.
    </marquee>

    <p style="color:blue;">I am blue</p>

    <p style="font-family:verdana">
      This is Verndana font paragraph.
    </p>

    <hr>

    <p style="font-family:'Courier New'">
      This is Courier New font paragraph.
    </p>

    <br>
    <br>

  </center>

</body>

</html>
```

{% file src="<https://1856586971-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MYBDzNEDANjFDzIvzi2%2F-MYDMTtT2-iQxGi786Al%2F-MYDMhnlo1-NYFnKTI3w%2Fhtml-1.html?alt=media&token=7e6ac1bc-55f7-4b0e-9e24-001326e1c025>" %}
Download html-1.html
{% endfile %}

### Output

![Image output for html-1.html](https://1856586971-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MYBDzNEDANjFDzIvzi2%2F-MYDWA49SONXFsw_kCiN%2F-MYE5azROCdxOBUj5Bkf%2Fimage.png?alt=media\&token=6c1bc0a1-3f6e-4007-9680-8ed85890831e)

{% hint style="success" %}
Try or Test The Corresponding Code Here
{% endhint %}

{% embed url="<https://codepen.io/MJK618/pen/PoWePNy>" %}
Live Demo html-1.html
{% endembed %}
