일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Props
- 기준
- Interface
- node.js
- useState
- Ethereum
- built in object
- concept
- Redux
- middleware
- evm
- CSS
- SSR
- tailwindcss
- error
- hardhat
- blockchain
- HTML
- CLASS
- bitcoin
- solidity
- typeScript
- web
- nextJS
- express.js
- graphQL
- JavaScript
- REACT
- API
- 삶
- Today
- Total
목록Frontend/HTML (10)
ReasonJun
DIV The element is a versatile container that is often used for grouping and structuring content. It has no inherent meaning and is primarily used for styling purposes or as a container for other elements. Hello World => Stack vertically. => has the largest size. => possible => possible Hello World Hello World p The element represents a paragraph of text. It is used to structure and separate blo..

In HTML, inline elements are those that are typically used within a line of text or alongside other inline elements. Unlike block-level elements, inline elements do not create a new line or a distinct block on the webpage. This mean inline do not have height. Here are some commonly used inline elements: span Hello World => Line breaks become spaces. => Hello World => For spacing to be applied al..

Favicon A favicon, short for "favorite icon," is a small icon that represents a website or webpage. It is typically displayed in the browser's address bar, next to the page title, and in browser tabs. Favicon files are generally saved in the ICO (icon) format, but other image formats like PNG can also be used. To add a favicon to an HTML document, you need to include a element in the section of ..

This is the basic structure of an HTML document. Let's go through each part: : This is the document type declaration. It informs the browser that the document is an HTML5 document. : This is the opening tag for the root element of the HTML document. The lang attribute specifies the language of the document, in this case, English. : This is the head section of the document. It contains meta-infor..