xgqfrms / FEIQA

FEIQA: Front End Interviews Question & Answers
https://feiqa.xgqfrms.xyz
MIT License
6 stars 0 forks source link

HTML 代码结构 #95

Open xgqfrms opened 4 years ago

xgqfrms commented 4 years ago

HTML 代码结构

按照 HTML5 语义话结构


<!DOCTYPE html>
<html lang="zh-Hans">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title></title>
</head>
<body>
    <header>
        <h1>title</h1>
    </header>
    <main>
        <section>
            <a href="https://feiqa.xgqfrms.xyz/index.html"></a>
        </section>
        <article></article>
    </main>
    <footer>
      <p>copyriht &copy; xgqfrms 2019</p>
    </footer>
</body>
</html>
xgqfrms commented 4 years ago

https://github.com/haizlin/fe-interview/issues/1496