일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- github
- Git
- ngs
- HTML
- drug muggers
- CUTandRUN
- PYTHON
- julia
- python matplotlib
- scRNAseq
- 싱글셀 분석
- CUT&RUN
- scRNAseq analysis
- ChIPseq
- MACS2
- 비타민 C
- js
- EdgeR
- single cell
- Batch effect
- single cell rnaseq
- cellranger
- matplotlib
- javascript
- single cell analysis
- Bioinformatics
- CSS
- drug development
- DataFrame
- pandas
Archives
- Today
- Total
바이오 대표
[HTML] <form> <label></label><input/></form>_예시)달력 본문
* id는 body 안에 어떤 태그에든 넣을 수 있는 attribute
하나의 element 당 고유의 id (unique identify) - 추후에 CSS를 이용해서 디자인을 할 때 고유 id를 이용할 수 있다.
input type="data"
<!DOCTYPE html>
<html lang="kr">
<head>
<title>HTML input Exercise</title>
</head>
<body>
<form >
<label for='website' >Website</label>
<input id='website' required placeholder="Name" type="date"/>
<input type="submit" value="Create Account"/>
</form>
</body>
</html>
↓
'Front_end' 카테고리의 다른 글
[CSS] CSS 기본형식 및 HTML 적용 방법 (0) | 2021.08.12 |
---|---|
[HTML] <div></div>, Semantic 태그들 (0) | 2021.08.08 |
[HTML] <form> <label></label><input/></form>_예시)계정 (0) | 2021.08.08 |
[HTML] HEAD = 웹사이트 description, meta 태그 (0) | 2021.08.08 |
[HTML] Visual Studio Code Theme (Set up & Error 띄우기) (0) | 2021.08.08 |