Basic HTML Structure | 12.03.2021
Because I already searched several times for a real basic HTML5 structure, here it comes:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
</body>
</html>
In the following there are a few more examples which I use from time to time.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/mini.css/3.0.1/mini-default.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
</body>
</html>