Skip to content

Commit 34f5ea6

Browse files
fix: improvements from recordings 01.04.2025
1 parent 5eb4f2b commit 34f5ea6

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3732,7 +3732,7 @@ By utilizing these HTML tags and attributes effectively, webmasters can optimize
37323732

37333733
[^96]CodeSandbox: Meta Keywords Tag.
37343734

3735-
[^96]:[CodeSandbox: Meta Keywords Tag](https://ykmyqn.csb.app/), last access: September 7, 2024.
3735+
[^96]:[CodeSandbox: Meta Keywords Tag](https://ykmyqn.csb.app/), last access: April 1, 2025.
37363736

37373737
- While the `<meta name="keywords">` tag may not carry as much weight as it once did, it still provides a way to specify relevant keywords for the page's content. Including relevant keywords can still be beneficial, especially for other search engines that may use them as a ranking factor.
37383738

@@ -3746,7 +3746,7 @@ By utilizing these HTML tags and attributes effectively, webmasters can optimize
37463746

37473747
[^97]CodeSandbox: Viewport Meta Tag.
37483748

3749-
[^97]:[CodeSandbox: Viewport Meta Tag](https://zzj7nh.csb.app/), last access: September 7, 2024.
3749+
[^97]:[CodeSandbox: Viewport Meta Tag](https://zzj7nh.csb.app/), last access: April 1, 2025.
37503750

37513751
- The viewport meta tag ensures that the webpage is displayed correctly and responsively on different devices and screen sizes. Setting the initial scale to 1.0 ensures that the page is rendered at the correct zoom level on mobile devices.
37523752

@@ -3807,7 +3807,7 @@ Semantic HTML elements provide meaning to the structure of a webpage, making it
38073807
</section>
38083808
</main>
38093809
<footer>
3810-
<p>&copy; 2024 Your Website. All rights reserved.</p>
3810+
<p>&copy; 2025 Your Website. All rights reserved.</p>
38113811
</footer>
38123812
</body>
38133813
</html>
@@ -3817,7 +3817,7 @@ Semantic HTML elements provide meaning to the structure of a webpage, making it
38173817

38183818
[^98]CodeSandbox: Semantic Markup.
38193819

3820-
[^98]:[CodeSandbox: Semantic Markup](https://t9dcrs.csb.app/), last access: September 8, 2024.
3820+
[^98]:[CodeSandbox: Semantic Markup](https://t9dcrs.csb.app/), last access: April 1, 2025.
38213821

38223822
#### Form Enhancements
38233823

@@ -3827,19 +3827,19 @@ HTML5 introduces new input types and attributes to enhance form usability and va
38273827

38283828
```html
38293829
<form>
3830-
<label for="email">Email:</label>
3831-
<input type="email" id="email" name="email" required>
3832-
<label for="password">Password:</label>
3833-
<input type="password" id="password" name="password" required>
3834-
<button type="submit">Submit</button>
3830+
<label for="email">Email:</label>
3831+
<input type="email" id="email" name="email" required>
3832+
<label for="password">Password:</label>
3833+
<input type="password" id="password" name="password" required>
3834+
<button type="submit">Submit</button>
38353835
</form>
38363836
```
38373837

38383838
[![Edit 099-Form Enhancements](images/codesandbox.svg)](https://codesandbox.io/p/sandbox/099-form-enhancements-2pv533)
38393839

38403840
[^99]CodeSandbox: Form Enhancements.
38413841

3842-
[^99]:[CodeSandbox: Form Enhancements](https://2pv533.csb.app/), last access: September 8, 2024.
3842+
[^99]:[CodeSandbox: Form Enhancements](https://2pv533.csb.app/), last access: April 1, 2025.
38433843

38443844
#### Multimedia Integration
38453845

@@ -3858,7 +3858,7 @@ The `<audio>` and `<video>` elements in HTML5 allow developers to embed audio an
38583858

38593859
[^100]CodeSandbox: Multimedia Integration.
38603860

3861-
[^100]:[CodeSandbox: Multimedia Integration](https://zlskc5.csb.app/), last access: September 8, 2024.
3861+
[^100]:[CodeSandbox: Multimedia Integration](https://zlskc5.csb.app/), last access: April 1, 2025.
38623862

38633863
#### Mobile Optimization
38643864

57.2 KB
Binary file not shown.

__presentation-slides/index.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2583,7 +2583,7 @@ <h2>Article Title</h2>
25832583

25842584
[![Edit 097-Viewport Meta Tag](images/codesandbox.svg)](https://codesandbox.io/p/sandbox/097-viewport-meta-tag-zzj7nh)
25852585

2586-
[CodeSandbox: Viewport Meta Tag](https://zzj7nh.csb.app/), last access: September 7, 2024.
2586+
[CodeSandbox: Viewport Meta Tag](https://zzj7nh.csb.app/).
25872587

25882588
---
25892589

@@ -2602,7 +2602,7 @@ <h2>Article Title</h2>
26022602

26032603
---
26042604

2605-
## HTML Best Practices and Performance Optimization <!-- .slide: data-transition="zoom" data-transition-speed="slow" -->
2605+
### HTML Best Practices and Performance Optimization <!-- .slide: data-transition="zoom" data-transition-speed="slow" -->
26062606

26072607
---
26082608

@@ -2650,7 +2650,7 @@ <h3>Article Title</h3>
26502650
</section>
26512651
</main>
26522652
<footer>
2653-
<p>&copy; 2024 Your Website. All rights reserved.</p>
2653+
<p>&copy; 2025 Your Website. All rights reserved.</p>
26542654
</footer>
26552655
</body>
26562656
</html>
@@ -2670,17 +2670,17 @@ <h3>Article Title</h3>
26702670

26712671
```html[|1|7|1,7|2|3|4|5|6]
26722672
<form>
2673-
<label for="email">Email:</label>
2674-
<input type="email" id="email" name="email" required>
2675-
<label for="password">Password:</label>
2676-
<input type="password" id="password" name="password" required>
2677-
<button type="submit">Submit</button>
2673+
<label for="email">Email:</label>
2674+
<input type="email" id="email" name="email" required>
2675+
<label for="password">Password:</label>
2676+
<input type="password" id="password" name="password" required>
2677+
<button type="submit">Submit</button>
26782678
</form>
26792679
```
26802680

26812681
[![Edit 099-Form Enhancements](images/codesandbox.svg)](https://codesandbox.io/p/sandbox/099-form-enhancements-2pv533)
26822682

2683-
[CodeSandbox: Form Enhancements](https://2pv533.csb.app/), last access: September 8, 2024.
2683+
[CodeSandbox: Form Enhancements](https://2pv533.csb.app/).
26842684

26852685
---
26862686

0 commit comments

Comments
 (0)