코딩 배우기 | Learning Coding | Build Your Own Webpage

코딩 배우기 | Learning Coding | Build Your Own Webpage

Now that you know HTML, you can create your very own webpage.
Let's get started!

Build Your Own Webpage | Website | Codecademy
1/6 What you will be making

2/6 Every house needs a frame
<!DOCTYPE html>
<head>
    <title>
        JONE STUDIO
    </title>
</head>
<body>
    
</body>

3/6 It's better with a header
<!DOCTYPE html>
<head>
    <title>
        JONE STUDIO
    </title>
</head>
<body>
    <h1>Hello World!</h1>

</body>

4/6 Tell us about yourself
<!DOCTYPE html>
<head>
    <title>
        JONE STUDIO
    </title>
</head>
<body>
    <h1>Hello World!</h1>
    <p>35 years old.</p>
    <p>I'm a man.</p>
    <p>I wanna be a entrepreneur.</p>

</body>

5/6 A picture's worth a thousand words
<!DOCTYPE html>
<head>
    <title>
        JONE STUDIO
    </title>
</head>
<body>
    <h1>Hello World!</h1>
    <img src="http://s3.amazonaws.com/codecademy-blog/assets/ninja_zpsa5dbe37a.jpg" />
    <p>35 years old.</p>
    <p>I'm a man.</p>
    <p>I wanna be a entrepreneur.</p>

</body>

6/6 Link me!
<!DOCTYPE html>
<head>
    <title>
        JONE STUDIO
    </title>
</head>
<body>
    <a href="http://jonestudio.blogspot.com/"><h1>Hello World!</h1></a>
    <a href="http://jonestudio.blogspot.com/"><img src="http://s3.amazonaws.com/codecademy-blog/assets/ninja_zpsa5dbe37a.jpg" /></a>
    <p>35 years old.</p>
    <p>I'm a man.</p>
    <p>I wanna be a entrepreneur.</p>

</body>