Project: My Website Portfolio

vancouver·2023년 4월 16일
0

HTML 이해하기

목록 보기
5/5

코드

<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Jang hoon Website</title>
</head>
<body>
<!-- TODO 1: Create the HTML Boilerplate -->
<h1>Jang hoon's Portfolio</h1>
<!-- TODO 2: Add Your previous projects' HTML into the public folder -->
<h2>I'm a Web developer</h2>
<hr/>
<!-- TODO 3: Take screenshots of your project previews and add the images to the images folder -->
<h2><a href="./public/movie-ranking.html">Movie Ranking Project</a></h2>
<img src="./assets/images/movie-ranking.png" height="500px" alt="Movie Ranking">
<!-- TODO 4: Add titles/subtitles etc. -->


<!-- TODO 5: Add a link to the project pages -->
<h2><a href="./public/birthday-invite.html">Birthday Invite Project</a></h2>
<!-- TODO 6: Add images to show the project previews
HINT for TODO 6: You can use the height attribute set to 200 to make the image smaller:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attr-height -->
<img src="./assets/images/birthday-invite.png" height="500px" alt="Birthday">
<hr/>
<!-- TODO 7: Add the Contact Me and About Me page links -->
<a href = "./public/about.html">About Me</a>
<a href = "./public/contact.html">Contact Me</a>
</body>
</html>


img src 와 a href

<img src="">는 이미지를 불러오는 하이퍼링크.
<a href="">는 하이퍼링크를 불러오는 코드.

이미지를 불러올때는 a href를 쓰지않는다.

0개의 댓글