일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- single cell
- 싱글셀 분석
- matplotlib
- ChIPseq
- scRNAseq
- single cell analysis
- python matplotlib
- drug development
- Git
- CSS
- pandas
- cellranger
- Batch effect
- julia
- HTML
- EdgeR
- single cell rnaseq
- js
- drug muggers
- CUT&RUN
- ngs
- CUTandRUN
- PYTHON
- scRNAseq analysis
- javascript
- github
- 비타민 C
- Bioinformatics
- MACS2
- DataFrame
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 |