0
HTML 5
How do I set up a real HTML 5 structure?
2 odpowiedzi
+ 1
You can use HTML5 Boilerplate instead.
Link: https://html5boilerplate.com/
always add this
<!DOCTYPE html>
then follows
<head>
<title>
<meta>
<body>
<header>
<nav>
<article>
<section>
<footer>
instead using of div with id's you can directly use these tags from HTML5
0
<header>
<nav>
<article>
<section>
<footer>