HYPER TEXT MARKUP LANGUAGE
HTML, which represents HyperText Markup Language, is the standard markup language used to make and configuration records on the Internet. It is a crucial structure block for making pages and web applications. HTML gives a design to content on the web, characterizing components like headings, sections, records, joins, pictures, structures, and that's just the beginning.
HTML utilizes an arrangement of labels to stamp and depict various pieces of a report. Labels are encased in point sections (< >), and they come two by two, with an initial tag and an end tag. The substance that falls between the opening and shutting labels characterizes the reason and presence of the component.
Here is a straightforward illustration of HTML code:
'''html
<!DOCTYPE html>
<html>
<head>
<title>My First Webpage</title>
</head>
<body>
<h1>Hello, World!</h1>
<p>This is a straightforward site page made with HTML.</p>
</body>
</html>
'''
In this model:
- '<!DOCTYPE html>' announces the HTML adaptation.
- '<html>' is the root component that wraps all the substance on the page.
- '<head>' contains meta-data about the HTML record, for example, the title showed in the program.
- '<title>' sets the title of the website page.
- '<body>' contains the fundamental substance of the page.
- '<h1>' and '<p>' are components for a heading and a passage, individually.
HTML is much of the time utilized related to Flowing Templates (CSS) and JavaScript to make more powerful and outwardly engaging pages. CSS is utilized for styling and design, while JavaScript adds intuitiveness and dynamic way of behaving to pages. Together, HTML, CSS, and JavaScript structure the center innovations for building current sites.
.png)
Comments
Post a Comment