1. Linking a style, script, image or any other file in HTML
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="style.css">
2. The HTML title will not appear anywhere
3. Centering
If it's possible center elements with the flex, grid, etc. layouts rather than using top: 50%; left: 50% transform: translate(-50%, -50%).
The "transform: translate" method may cause problems when rendering your website.
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%, -50%)
display: flex;
align-items: center;
justify-content: center;