Computer Science, asked by tusharsja, 1 year ago

Q5. Write HTML code to create Web Page and paste the output.
Description:
Title: INTRODUCTION TO JAVA
Font colour: RED
Font Size: 100
Main heading: Level 2
Content: Level 4
Color of Horizontal Line: Green
JAVA Tutorial
Java is an object ononted class based concurrent secunod and
general-purpose computer-programming language
What is Java
Java is a programming language and a platform Java is a high
robust, object-oriented and secure programming language​

Answers

Answered by rahul9490
1

HTML Styles

Example

I am Red

I am Blue

I am Big

The HTML Style Attribute

Setting the style of an HTML element, can be done with the style attribute.

The HTML style attribute has the following syntax:

<tagname style="property:value;">

The property is a CSS property. The value is a CSS value.

You will learn more about CSS later in this tutorial.

Background Color

The CSS background-color property defines the background color for an HTML element.

This example sets the background color for a page to powderblue:

Example

<body style="background-color:powderblue;">

<h1>This is a heading</h1>

<p>This is a paragraph.</p>

</body>

Text Color

The CSS color property defines the text color for an HTML element:

Example

<h1 style="color:blue;">This is a heading</h1>

<p style="color:red;">This is a paragraph.</p>

Fonts

The CSS font-family property defines the font to be used for an HTML element:

Example

<h1

Similar questions