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!

 

Click first thing for WinOS

 

 

I agree the contract

 

 

 

Finally check the button to install VSC

 

 

- 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>

You can easily check the result when you do exceuting saved files written by Visual Basic Code(Please refer to the above code