html template

 
概述

包含完整头部信息和主体结构的HTML基础模板。

代码展示
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>更好的CSS方案</title>
<meta name="keywords" content=""/>
<meta name="description" content=""/>
<meta name="viewport" content="width=device-width"/>
<link rel="stylesheet" href="css/style.css"/>
<link rel="shortcut icon" href="img/favicon.ico"/>
<link rel="apple-touch-icon" href="img/touchicon.png"/>
</head>
<body>
<div class="g-doc">
    <div class="g-hd">
          
    </div>
    <div class="g-bd">
        <div class="g-mn">
              
        </div>
        <div class="g-sd">
              
        </div>
    </div>
    <div class="g-ft">
          
    </div>
</div>
</body>
</html> 

 

相关文章:

  • 2021-07-09
  • 2022-01-31
  • 2021-08-07
  • 2022-03-05
  • 2022-01-09
  • 2021-11-02
  • 2021-07-05
  • 2021-07-05
猜你喜欢
  • 2021-12-05
  • 2021-10-14
  • 2021-09-09
  • 2021-11-02
  • 2021-10-23
  • 2021-08-09
  • 2021-07-24
相关资源
相似解决方案