-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path03_link_and_image.html
More file actions
37 lines (37 loc) · 1.43 KB
/
03_link_and_image.html
File metadata and controls
37 lines (37 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ex3</title>
</head>
<body>
<!-- hyper-text mark language -->
<!-- 인라인 태그 -->
<!-- 속성명=속성값 (attribute) -->
<!-- attribute : 내 맘대로 넣어도 X -->
<!-- 태그별로 구현되어있는 속성 / global 모든 태그가 가지는 속성 -->
<!-- h/ref hyper text - reference -->
<!-- p/div를 써서 '문단' 나누기 -->
<div>
<!-- alt/option + 위아래 방향키 해당 줄 이동 -->
<a href="https://naver.com">네이버</a>
</div>
<a target="_blank" href="https://naver.com">네이버 (새창 띄우기)</a> <br />
<!-- <br /> -->
<a href="01_block_and_inline.html">같은 경로에 있는 다른 페이지로 이동</a>
<!-- 이미지 -->
<!-- src / (href랑 유사 URL, 경로 형태로된 정보), alt / 이미지가 깨졌을 때 보이는 설명 -->
<!-- width : 가로, height : 세로 -->
<img
width="320"
height="240"
src="https://cdn.pixabay.com/photo/2025/08/29/02/23/landscape-9802950_1280.jpg"
alt="사진 테스트1"
/>
ㅇㅇㅇㅇㅇ
<img src="" alt="사진 테스트2" />
<img width="320" src="cat-4869935_1280.jpg" alt="사진 테스트3" />
<img width="320" src="img/cat-4869935_1280.jpg" alt="사진 테스트4" />
</body>
</html>