본문 바로가기
Python/증권 데이터 분석

HTML 주요 태그 리스트(HTML main tag list)

by grey-hat hacker 2021. 1. 7.
728x90
태그 속성 의미
html   HTML  문서
head   문서 헤더
title   문서 제목
body  text, background, bgcolor 문서 바디
h1, h2, h3   머리말
p   문단
br   줄바꿈
b   볼드체
i   이탤릭체
s   취소선
ol, ul type 순서 리스트, 비순서 리스트
li type 리스트 아이템
table width, boredr, cellpadding 테이블
tr align 테이블 행
th, td colspan 테이블 헤더, 테이블 데이터
a href, target 하이퍼링크
img src, width, height 이미지
<!--...-->   주석

 해당 내용을 가지고 겨벼운 실습을 해보면 아래와 같이 간단한 홈페이지를 만들 수 있다. 

<html>
	<head>
		<title>This is title</title>
	</head>
	<body>
		<h1>heading1 thext</h1>
		<h2>heading2 thext</h2>
		<h3>heading3 thext</h3>
		<p>paragraph</p>
		plain text<br />
		<b>bold text</b><br />
		<i>Italic text</i><br />
		<s>strike text</s><br />
	<ol>
		<li>first</li>
		<li>second</li>
		<li>third</li>
	</ol>
	<ul>
		<li>unorderd</li>
		<li>unorderd</li>
		<li>unorderd</li>
	</ul>
	<table border=1>
		<tr>
			<th>table header1</th>
			<th>table header2</th>
			<th>table header3</th>
		</tr>
		<tr>
			<td>table data 4</td>
			<td>table data 5</td>
			<td>table data 6</td>
		</tr>
	</table><br />
	<a href="https://www.python.org">Visit Python homepage!<br />
	<img src="https://www.python.org/static/img/python-logo.png"/></a>
	</body>
</html>

 

 


- 모든 내용은 파이썬 증권 데이터 분석 책을 공부하며 작성해보았습니다. 

728x90
반응형

댓글