Computer Science, asked by 987654321123456789, 1 year ago

how to make html5 in computer

Answers

Answered by ChrisComstock
0

Web browser renders your HTML5 code. So you just need to do some coding and you need to check the very first line of your HTML code. Which is doctype declaration must be this <!DOCTYPE html> .

If it was helpful plzz subscribe me in youtube [name - shadowstarkid]

link - https://www.youtube.com/channel/UCJ7A2n8OQVIZmZ0LuBBLK7Q?view_as=subscriber


987654321123456789: thank you
Answered by Mikeey
0
making html files requires you to know the tags used. the basic tags include =>

<html> (a must use tag for each webpage)
<head> (used to design the header part of the webpage)
<body> (used to design the Body of the webpage)

These are the most basic tags you may start with.

PS. Each of the tag you use for designing your webpage must be closed at the end (or wherever required) of the webpage.



Q. What is an attribute?
A. They are the characteristics of the page elements, most often used to amplify a tag.


**Here is an example of coding of a Basic Webpage**=>


<HTML>
<HEAD>
<TITLE> My Webpage </TITLE>
</HEAD>
<BODY BGCOLOR="BLUE">
<H1 ALIGN="CENTER"> Hello! </H1>
<P> Hello! This is My first webpage and i am colouring it blue. <BR>
<BR> Hope You Like This. Please Mark It As Brainliest :P </P>
</BODY>
</HTML>

987654321123456789: thank you
Mikeey: welcome
Similar questions