Hi

basic html code 본문

WEB(웹)

basic html code

SharingWorld 2018. 7. 23. 14:00
basic html code
<!doctype html>

<html lang="en">
<head>
  <meta charset="utf-8">

  <title>The HTML5 Herald</title>
  <meta name="description" content="The HTML5 Herald">
  <meta name="author" content="SitePoint">

  <link rel="stylesheet" href="css/styles.css?v=1.0">

</head>

<body>
  <script src="js/scripts.js"></script>
</body>
</html>

pug 버전

doctype html
html(lang='en')
head
meta(charset='utf-8')
title The HTML5 Herald
meta(name='description', content='The HTML5 Herald')
meta(name='author', content='SitePoint')
link(rel='stylesheet', href='css/styles.css?v=1.0')
body
script(src='js/scripts.js')



출처 : https://www.sitepoint.com/a-basic-html5-template/

'WEB(웹)' 카테고리의 다른 글

API  (0) 2018.07.29
Ajax  (0) 2018.07.29
블로그 디자인 레퍼런스  (0) 2018.07.23
서버 내가 만들기  (0) 2018.07.16
웹스톰 라이브러리 autocomplete 적용하기  (0) 2018.07.06