Web 1일차 1-2(
2022. 12. 20. 12:29ㆍ코딩배움일지/Web 구현
<!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>Document</title>
</head>
<body>
</body>
</html>
<!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>Document</title>
</head>
<body>
<h1>레드향</h1>
<p>껍질에 붉은 빛이 돌아 레드향이라 불린다.</p>
<p>레드향은 한라봉과 귤을 교배한 것으로 <br>일반 귤보다 2~
3배 크고, 과육이 붉고 통통하다.</p>
<p>비타민 C와 비타민 P가 풍부해<br> 혈액순환, 감기예방 등
에 좋은 것으로 알려져 있다.</p>
<h2>레드향 샐러드 레시피</h2>
<h2>상품 구성</h2>
</body>
</html>
ol 순서가 있다
ul 점으로 표시된다
<!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>Document</title>
<style>
table{
border-collapse: collapse;
border: 1px solid black;
}
th,td{
border: 1px solid black;
width: 150px;
}
</style>
</head>
<body> <!-- th 제목 /td 내용 -->
<table>
<tr>
<th>이름</th>
<td>양진구</td>
</tr>
<tr>
<th>연락처</th>
<td>010-4142-3421</td>
</tr>
</table>
</body>
</html>
'코딩배움일지 > Web 구현' 카테고리의 다른 글
Web 2일차 1-1(입력양식) (0) | 2022.12.21 |
---|---|
Web 2일차 1(태그) (0) | 2022.12.21 |
Web 1일차 1-3() (0) | 2022.12.20 |
Web 1일차 1-1(HTML이란) (0) | 2022.12.20 |
Web 1일차 1(웹개발이란?) (0) | 2022.12.20 |