Skip to content

Commit 3dc16b5

Browse files
committed
HTML
1 parent 314f0d9 commit 3dc16b5

13 files changed

Lines changed: 112 additions & 0 deletions

File tree

Html/BgColor/index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Background color</title>
7+
<link rel="stylesheet" href="style.css"/>
8+
</head>
9+
<body>
10+
<h1>This is Heading</h1>
11+
<p>This is Paragraph</p>
12+
</body>
13+
</html>

Html/BgColor/style.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
body{
2+
background-color: rgb(175, 230, 212);
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"liveServer.settings.port": 5501
3+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Heading Example</title>
7+
</head>
8+
<body>
9+
<h1>This is a Heading</h1>
10+
<p>This is a paragraph.</p>
11+
</body>
12+
</html>

Html/Heading/index.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Heading</title>
7+
</head>
8+
<body>
9+
10+
<h1>Heading 1</h1>
11+
<h2>Heading 2</h2>
12+
<h3>Heading 3</h3>
13+
<h4>Heading 4</h4>
14+
<h5>Heading 5</h5>
15+
<h6>Heading 6</h6>
16+
17+
</body>
18+
</html>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"liveServer.settings.port": 5501
3+
}

Html/HyperLink/index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>HyperLink</title>
7+
</head>
8+
<body>
9+
<p>Html links are defined with the tag .The Link address is specified in the href attribute :</p>
10+
<p><a href="https://www.w3schools.com/">Visit W3Schools.com!</a></p>
11+
12+
</body>
13+
</html>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"liveServer.settings.port": 5502
3+
}

Html/My First Paragraph/index.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>My First Paragraph</title>
7+
</head>
8+
<body>
9+
<p>My First Paragraph</p>
10+
</body>
11+
</html>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"liveServer.settings.port": 5502
3+
}

0 commit comments

Comments
 (0)