Move HTML content under appropriate directory

This commit is contained in:
Angelos Chalaris
2023-05-20 14:20:22 +03:00
parent 1bf8ce8c23
commit acd5ca0edf
16 changed files with 9 additions and 9 deletions

View File

@ -2,10 +2,10 @@ slug: html/head-basics
name: HTML Head Basics
featured: true
snippetIds:
- articles/s/html-recommended-minimum-head
- articles/s/html-head-social-tags
- articles/s/html-head-icons
- articles/s/html-head-links
- html/s/recommended-minimum-head
- html/s/head-social-tags
- html/s/head-icons
- html/s/head-links
splash: basics.png
description: >-
Learn how to use the HTML head element to improve your site's SEO, social

View File

@ -31,7 +31,7 @@ snippetIds:
- js/s/pure-functions
- js/s/recursion
- js/s/use-strict
- js/s/async-defer
- html/s/async-defer
- js/s/closures
- js/s/iife
- js/s/event-loop-explained

View File

@ -2,8 +2,8 @@
title: What is the difference between async and defer in script loading?
shortTitle: Async and defer
type: question
language: javascript
tags: [html]
language: html
tags: [script,javascript]
author: chalarangelo
cover: coworking-space
excerpt: Understanding how to correctly load your JavaScript files can significantly improve your web application's performance.

View File

@ -2,8 +2,8 @@
title: 'Tip: Protect your users from malicious websites when using target="_blank"'
shortTitle: 'Safeguarding target="_blank"'
type: tip
language: javascript
tags: [browser,security]
language: html
tags: [link,browser,security]
author: chalarangelo
cover: laptop-with-code
excerpt: Opening a link in a new tab comes with a security vulnerability that you may not be aware of. Protect your users with this simple trick.