[1.1] Learning HTML

Mikyung Lee·2020년 12월 4일
0

html / css

목록 보기
2/4
post-thumbnail

h1-텍스트h6:

bold heading with various size

ul

unordered list using with "li"

ol

ordered list (1,2,3...) using with "li"

a

has an href attribute and represents a hyperlink

href

contains URL

a href="http://google.com"
Go to google.com

target="_self"

opens within the same page

a href="http://google.com" target="_self"

target="_blank"

opens in new page

a href="http://google.com" target="_blank"

img

self closing tag

src: image URL

Tags and website head (title)

<!DOCTYPE html>
<html>
    <head>
        <title>Home - My first website.</title>
    </head>
    <body>
        <h1>
            Hello!
        </h1>
        <a href="http://google.com" target="_blank"> Go</a>
        <img src="https://upload.wikimedia.org/wikipedia/ko/c/cd/Doraemon.PNG" />
    </body>
</html>
profile
front-end developer 🌷

0개의 댓글