본문 바로가기
Web Development/HTML

3. HTML: The Essentials

by 사향낭 2022. 12. 6.

19. Introduction to HTML

 

HTML - Hyper Text Markup Language, make this part bold, a link, a paragraph, ...

 

HTML elements - we create elements by tags

 

 

25. HTML Boilerplate

 

We write our HTML in a standard "skeleton"

 

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Hello</title>
</head>

<body>
    <p>Hello HTML!!</p>
</body>

</html>

'Web Development > HTML' 카테고리의 다른 글

2. An Introduction to Web Development  (0) 2022.12.06
5. HTML: Forms & Tables  (0) 2022.03.14
4. HTML: Next Steps & Semantics  (0) 2022.03.14

댓글