Skip to content

Commit 086bf84

Browse files
committed
Added Home icon
1 parent f692214 commit 086bf84

File tree

12 files changed

+39
-0
lines changed

12 files changed

+39
-0
lines changed

content-editable/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212

1313
<body>
1414
<div class="demo">
15+
<a href="../index.html" class="home">
16+
<img src="../home.svg" alt="home" />
17+
</a>
1518
<h2> Shoppping List(Content Editable) </h2>
1619
<ul class="content-editable" contenteditable="true">
1720
<li> 1. Milk </li>

data-attribute/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121

2222
<body>
2323
<div class="demo">
24+
<a href="../index.html" class="home">
25+
<img src="../home.svg" alt="home" />
26+
</a>
2427
<h2> Know data attribute </h2>
2528
<div class="data-attribute" id="data-attr" data-custom-attr="You are just Awesome!"> I have a hidden secret!
2629
</div>

datalist/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212

1313
<body>
1414
<div class="demo">
15+
<a href="../index.html" class="home">
16+
<img src="../home.svg" alt="home" />
17+
</a>
1518
<h1>Datalist Tag</h1>
1619
<form action="" method="get">
1720
<label for="fruit">Choose your fruit from the list:</label>

details/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212

1313
<body>
1414
<div class="demo">
15+
<a href="../index.html" class="home">
16+
<img src="../home.svg" alt="home" />
17+
</a>
1518
<h1>Details Tag</h1>
1619
<details>
1720
<summary>Click Here to get the user details</summary>

home.svg

+1
Loading

inputs/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919

2020
<body>
2121
<div class="demo">
22+
<a href="../index.html" class="home">
23+
<img src="../home.svg" alt="home" />
24+
</a>
2225
<h1>All about Inputs</h1>
2326

2427
<h2>Color picker</h2>

main.css

+8
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@ li {
2424
list-style: none;
2525
}
2626

27+
.home {
28+
text-decoration: none;
29+
}
30+
31+
.home span {
32+
font-size: 25px;;
33+
}
34+
2735
.box {
2836
border: 1px dotted;
2937
border-radius: 5px;

map/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212

1313
<body>
1414
<div class="demo">
15+
<a href="../index.html" class="home">
16+
<img src="../home.svg" alt="home" />
17+
</a>
1518
<h2> Map - Image map </h2>
1619
<div>
1720
<img src="circus.jpg" width="500" height="500" alt="Circus" usemap="#circusmap">

mark/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212

1313
<body>
1414
<div class="demo">
15+
<a href="../index.html" class="home">
16+
<img src="../home.svg" alt="home" />
17+
</a>
1518
<h1>Mark something to Highlight</h1>
1619
<p> Did you know, you can <mark>"Highlight something interesting"</mark> just with a HTML tag? </p>
1720
</div>

meter/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212

1313
<body>
1414
<div class="demo">
15+
<a href="../index.html" class="home">
16+
<img src="../home.svg" alt="home" />
17+
</a>
1518
<h2> Meter </h2>
1619
<label for="disk_c">Disk usage C:</label>
1720
<meter id="disk_c" value="8" min="0" max="10">2 out of 10</meter><br>

output/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212

1313
<body>
1414
<div class="demo">
15+
<a href="../index.html" class="home">
16+
<img src="../home.svg" alt="home" />
17+
</a>
1518
<h2> Let's see the Output </h2>
1619
<form oninput="x.value=parseInt(a.value) * parseInt(b.value)">
1720
<input type="number" id="a" value="0">

range/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121

2222
<body>
2323
<div class="demo">
24+
<a href="../index.html" class="home">
25+
<img src="../home.svg" alt="home" />
26+
</a>
2427
<h1>Slider</h1>
2528
<form method="post">
2629
<input

0 commit comments

Comments
 (0)