일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- drug development
- ChIPseq
- drug muggers
- MACS2
- single cell
- HTML
- 비타민 C
- single cell analysis
- scRNAseq analysis
- 싱글셀 분석
- CUT&RUN
- CUTandRUN
- github
- js
- ngs
- julia
- Git
- matplotlib
- PYTHON
- EdgeR
- Bioinformatics
- Batch effect
- javascript
- scRNAseq
- DataFrame
- cellranger
- CSS
- pandas
- python matplotlib
- single cell rnaseq
Archives
- Today
- Total
바이오 대표
[HTML] <div></div>, Semantic 태그들 본문
<div> : (division) 또 다른 box (쉽게 생각하면 enter 역할)
<div> 를 대체할 수 있는 태그들 with meaning ex) header, main, footer
<body>
<label for='website' >Website</label>
<input id='website' required placeholder="Name" type="date"/>
<input id='website' required placeholder="Name" type="date"/>
<input type="submit" value="Create Account"/>
</body>
<body>
<div>
<label for='website' >Website</label>
</div>
<div>
<input id='website' required placeholder="Name" type="date"/>
</div>
<div>
<input id='website' required placeholder="Name" type="date"/>
<div/>
<input type="submit" value="Create Account"/>
</body>
예전에는 <div></div> 를 이용해서 코드와 html 를 box 형태로 구분 하였다. div 와 같은 역할을 하지만 개발자들이 코드를 보고 더 쉽게 이해 할 수 있도록 바로 의미를 짐작할 수 있는 Semantic 태그들이 존재한다.
ex) header,main,footer 등
* <header> visible (in the body) =! <head> invisible
예시)
<!DOCTYPE html>
<html lang="kr">
<head>
<title>HTML input Exercise</title>
</head>
<body>
<header>
<h1>This is the header</h1>
</header>
<main>
Main text goes here.
</main>
</body>
</html>
↓
<span> : short text
<p> : paragraph
https://developer.mozilla.org/en-US/docs/Web/HTML/Element
해당 웹사이트의 Context sectioning 에 다른 태그들 활용 가능
'Front_end' 카테고리의 다른 글
[CSS] Box (block) & Inlines (0) | 2021.08.12 |
---|---|
[CSS] CSS 기본형식 및 HTML 적용 방법 (0) | 2021.08.12 |
[HTML] <form> <label></label><input/></form>_예시)달력 (0) | 2021.08.08 |
[HTML] <form> <label></label><input/></form>_예시)계정 (0) | 2021.08.08 |
[HTML] HEAD = 웹사이트 description, meta 태그 (0) | 2021.08.08 |