본문 바로가기
Information Technology/HTML5

[HTML5] 06. Training for LINK Tag

by Patrick Moon 2019. 8. 19.

1-1. Making a.html with css indication

<!DOCTYPE html>
<html>
    <head>
        <title>Sample</title>
        <link href="../data/style/default.css" rel="stylesheet">
    </head>
    <body> 
        <div>
            <a href="http://www.google.com">
            <img src="../data/img_sample3.png"width = "400px" height="auto" > 
            Image example #2
            </a>
            </div>
        </body>
</html>


 

1-2. Making default.css 

a {
font-size: 50px;
color: rgb(165, 158, 53);
font-weight: 500;
}

 

1-3. Export Result when open a.html via Chrome browser

 

댓글