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
반응형
'Python > 증권 데이터 분석' 카테고리의 다른 글
마리아디비(mariadb) 설치하기 (0) | 2021.01.08 |
---|---|
뷰티풀 수프(Beautiful Soup) 이용한 페이지 크롤링 작업 (6) | 2021.01.07 |
판다스(pandas) read_html() 함수로 엑셀파일 읽기, 사이트 파일 읽어오기 (0) | 2021.01.04 |
3년 전 - 마이크로소프트, 삼성전자 - 주식을 샀다면?? 코딩을 이용한 수익 비교 (0) | 2021.01.04 |
팬더스를 이용한 주식 시세 비교하기 (Comparison of Stock Price Using Panthers) (0) | 2020.12.22 |
댓글