일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- ChIPseq
- matplotlib
- drug development
- pandas
- scRNAseq
- scRNAseq analysis
- julia
- CUT&RUN
- Batch effect
- DataFrame
- CSS
- 비타민 C
- single cell rnaseq
- CUTandRUN
- github
- PYTHON
- MACS2
- EdgeR
- python matplotlib
- cellranger
- single cell
- HTML
- single cell analysis
- js
- Git
- ngs
- drug muggers
- javascript
- 싱글셀 분석
- Bioinformatics
Archives
- Today
- Total
목록span (2)
바이오 대표
[CSS] Box (block) & Inlines
box (block): div, p , address, blockquote non-box (inline) : span, a, img, code block은 옆에 다른 요소가 올 수 없는 반면, inline 요소들은 옆에 붙여서 사용할 수 있다. 예시) hello hello hello * 가장 대표적인 Box =
Front_end
2021. 8. 12. 20:27
[HTML] <div></div>, Semantic 태그들
: (division) 또 다른 box (쉽게 생각하면 enter 역할) 를 대체할 수 있는 태그들 with meaning ex) header, main, footer Website Website 예전에는 를 이용해서 코드와 html 를 box 형태로 구분 하였다. div 와 같은 역할을 하지만 개발자들이 코드를 보고 더 쉽게 이해 할 수 있도록 바로 의미를 짐작할 수 있는 Semantic 태그들이 존재한다. ex) header,main,footer 등 * This is the header Main text goes here. ↓ : short text : paragraph https://developer.mozilla.org/en-US/docs/Web/HTML/Element HTML elements r..
Front_end
2021. 8. 8. 18:35