How to Install Hyper-V on Windows 10 / 11 Home
Hyper-V comes with all versions of Windows 10/11. except Home. However, don't fret; there are ways to enable Hyper-V on Windows 10 / 11 Home.
learn-html.org is a free interactive HTML tutorial for people who want to learn HTML, fast.
The basic elements of an HTML page are:
<
h1
>
, <
h2
>
, <
h3
>
, <
h4
>
, <
h5
>
, <
h6
>
tags.<
p
>
tag.<
hr
>
tag.<
a
>
(anchor) tag.<
ul
>
(unordered list), <
ol
>
(ordered list) and <
li
>
(list element) tags.<
img
>
tag<
div
>
tag<
span
>
tagThe next few pages will give an overview of these basic HTML elements.
Each element can also have attributes - each element has a different set of attributes relevant to the element. There are a few global elements, the most common of them are:
id
- Denotes the unique ID of an element in a page. Used for locating elements by using links, JavaScript, and more.class
- Denotes the CSS class of an element. Explained in the CSS Basics tutorial.style
- Denotes the CSS styles to apply to an element. Explained in the CSS Basics tutorial.data-x
attributes - A general prefix for attributes that store raw information for programmatic purposes. Explained in detailed in the Data Attributes section.There are six different types of text header you can choose from, h1 being the topmost heading with the largest text, and h6 being the most inner heading with the smallest text. In general, you should have only one h1 tag with a page, since it should be the primary description of the HTML page.
As we've seen in the last example, a paragraph is a block of text separated from the rest of the text around it.
Let's see an example of the <
h1
>
, <
h2
>
and <
p
>
tags in action:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>My First Page</h1>
<p>This is my first page.</p>
<h2>A secondary header.</h2>
<p>Some more text.</p>
</body>
</html>
A horizontal ruler <
hr
>
tag acts as a simple separator between page sections.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>My First Page</h1>
<p>This is my first page.</p>
<hr>
<p>This is the footer - all rights are reserved to me.</p>
</body>
</html>
<
h1
>
tag with the text "I'm the most important!"<
h2
>
tag with the text "I'm less important!"<
h6
>
tag with the text "I'm the least important!"Hyper-V comes with all versions of Windows 10/11. except Home. However, don't fret; there are ways to enable Hyper-V on Windows 10 / 11 Home.
We wanted to create the absolute most basic routing code in PHP, so here it is. We will direct ALL traffic to index and route to the new files from here.
How to fix a Hacked cPanel account, a user account