Information Technology/HTML5
[HTML5] 01. Training for HTML basic source
Patrick Moon
2019. 8. 18. 21:35
At the first time, you need to download Visual Studio Code software.
(Search them into Google)
Click to Visual Studio Code!
- Save as.. (Otherwise, you can digit Ctrl + Shift + S)
- for example, you can save as a.html (file type is html)
<!DOCTYPE html>
<html>
<head>
<title>
</title>
</head>
<body>
</body>
</html>
- Basic Code Block
<!DOCTYPE html>
<html>
<head>
<title>Title Logo written by 'Patrick Config'</title>
</head>
<body>Contents area that can be printed</body>
</html>