Information Technology/HTML5
[HTML5] 06. Training for LINK Tag
Patrick Moon
2019. 8. 19. 01:50
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