This commit is contained in:
SHREYAS SUKHADEVE 2022-10-28 09:37:39 +00:00 committed by GitHub
commit 8877bc7ef4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
32 changed files with 171 additions and 6 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
code-example-images/map.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -15,13 +15,21 @@
<a href="../index.html" class="home">
<img src="../home.svg" alt="home" />
</a>
<h2> Shoppping List(Content Editable) </h2>
<h2> Shoppping List (Content Editable) </h2>
<ul class="content-editable" contenteditable="true">
<li> 1. Milk </li>
<li> 2. Bread </li>
<li> 3. Honey </li>
</ul>
<br>
<details>
<summary>see code:</summary>
<p>
The code to implement this editable content function in a list is as below:<br>
<img src="../code-example-images/content-editable.png" alt="couldn't load image"/>
</p>
</details>
</div>
</body>
</html>
</html>

View File

@ -35,6 +35,27 @@
<br />
<p id="msg"></p>
<details>
<summary>see code:</summary>
<p>
The code to implement this custom script on HTML elements is as below:<br><br>
The code is devided in two parts: i)head, ii)body section.<br><br>
<ol type="i">
<li>
<b>Head Section</b>
<br><br>
<img src="../code-example-images/data-atr-head.png" alt="couldn't load image"/>
</li>
<br><br>
<li>
<b>Body Section</b>
<br><br>
<img src="../code-example-images/data-atr-body.png" alt="couldn't load image"/>
</li>
</ol>
</p>
</details>
</div>
</body>

View File

@ -27,7 +27,15 @@
<option value="Avacado">
</datalist>
<input type="submit">
</form>
</form>
<br><br>
<details>
<summary>see code:</summary>
<p>
The code to implement this Datalist is as below:<br>
<img src="../code-example-images/datalist.png" alt="couldn't load image"/>
</p>
</details>
</div>
</body>

View File

@ -50,6 +50,13 @@
<td>Blogger</td>
</tr>
</table>
<br>
<p>
<b>But, How does this work?</b><br>
The answer to this is simple, we would use a details tag to get this.<br>
an example to this can be seen as below:<br><br>
<img src="../code-example-images/details-example.png" alt="couldn't load the image">
</p>
</details>
</div>
</body>

View File

@ -29,6 +29,22 @@
</form>
</dialog>
<br><br>
<details>
<summary>see code:</summary>
<p>
The code to implement this Dialog is devided into two parts as below:<br>
The code can be split into 2 parts - i)HTML, ii)JS script. <br>
Code for these two parts are as follows:<br><br>
<b>i) HTML</b><br>
<img src="../code-example-images/dialog-body.png" alt="couldn't load image"/>
<br><br>
<b>ii) Script</b><br>
<img src="../code-example-images/dialog-script.png" alt="couldn't load image"/>
</p>
</details>
</div>
<script>
// Get the modal
@ -40,8 +56,6 @@
btn.onclick = function() {
dialog.showModal();
}
</script>
</body>

View File

@ -27,6 +27,15 @@
<h2>Color picker</h2>
<input type="color" onchange="showColor(event)">
<p id="colorMe">Color Me!</p>
<br>
<details>
<summary>see code:</summary>
<p>
The code to implement this color picker input is as below:<br>
<img src="../code-example-images/inputs-cp.png" alt="couldn't load image"/>
</p>
</details>
<div class="box">
<h2>Required</h2>
@ -35,15 +44,31 @@
<input type="text" id="username1" name="username" required>
<input type="submit">
</form>
<br>
<details>
<summary>see code:</summary>
<p>
The code to implement this REQUIRED input is as below:<br>
<img src="../code-example-images/inputs-req.png" alt="couldn't load image"/>
</p>
</details>
</div>
<div class="box">
<h2>Autofocus</h2>
<form>
<label for="username2">Username:</label>
<input type="text" id="username2" name="username" required autofocus>
<input type="text" id="username2" name="username" autofocus>
<input type="submit">
</form>
<br>
<details>
<summary>see code:</summary>
<p>
The code to implement this AUTOFOCUS input is as below:<br>
<img src="../code-example-images/inputs-af.png" alt="couldn't load image"/>
</p>
</details>
</div>
<div class="box">
@ -53,6 +78,14 @@
<input type="text" id="username3" name="username" placeholder="Enter your username">
<input type="submit">
</form>
<br>
<details>
<summary>see code:</summary>
<p>
The code to implement this PLACEHOLDER input is as below:<br>
<img src="../code-example-images/inputs-ph.png" alt="couldn't load image"/>
</p>
</details>
</div>
<div class="box">
@ -62,6 +95,14 @@
<input id="email" name="email" type="email" />
<input type="submit">
</form>
<br>
<details>
<summary>see code:</summary>
<p>
The code to implement this EMAIL input is as below:<br>
<img src="../code-example-images/inputs-eml.png" alt="couldn't load image"/>
</p>
</details>
</div>
<div class="box">
@ -75,6 +116,14 @@
pattern="^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{6,20}$" autofocus required>
<button type="submit"> Test </button>
</form>
<br>
<details>
<summary>see code:</summary>
<p>
The code to implement this REGEX VALIDATION input is as below:<br>
<img src="../code-example-images/inputs-reg.png" alt="couldn't load image"/>
</p>
</details>
</div>
</div>
</body>

File diff suppressed because one or more lines are too long

View File

@ -27,6 +27,20 @@
<area shape="circle" coords="426,409,100" href="clown.htm" alt="Clown">
</map>
</div>
<br><br>
<details>
<summary>see code:</summary>
<p>
The code to implement this map is as below:<br>
<img src="../code-example-images/map.png" alt="couldn't load image"/>
</p><br>
<p>
The components have their own separate html page that looks like:<br>
<img src="../code-example-images/map-element.png" alt="couldn't load image"/>
</p>
</details>
</div>
</body>
</html>

View File

@ -17,6 +17,14 @@
</a>
<h1>Mark something to Highlight</h1>
<p> Did you know, you can <mark>"Highlight something interesting"</mark> just with a HTML tag? </p>
<br>
<details>
<summary>see code:</summary>
<p>
The code to implement this HIGHLIGHTED content is as below:<br>
<img src="../code-example-images/mark.png" alt="couldn't load image"/>
</p>
</details>
</div>
</body>
</html>

View File

@ -24,6 +24,16 @@
<label for="file">Downloading progress:</label>
<progress id="file" value="32" max="100"> 32% </progress>
<br>
<details>
<summary>see code:</summary>
<p>
The code to implement this meter is as below:<br>
<img src="../code-example-images/meter.png" alt="couldn't load image"/>
</p>
</details>
</div>
</body>
</html>

View File

@ -21,6 +21,14 @@
* <input type="number" id="b" value="0">
= <output name="x" for="a b"></output>
</form>
<br><br>
<details>
<summary>see code:</summary>
<p>
The code to implement this OUTPUT is as below:<br>
<img src="../code-example-images/output.png" alt="couldn't load image"/>
</p>
</details>
</div>
</body>
</html>

View File

@ -35,9 +35,18 @@
value=""
onchange="changeValue(event)"/>
</form>
<br>
<div class="range">
<output id="output" name="result"> </output>
</div>
<br>
<details>
<summary>see code:</summary>
<p>
The code to implement this slider is as below:<br>
<img src="../code-example-images/slider.png" alt="couldn't load image"/>
</p>
</details>
</div>
</body>