https://github.com/frzam/zero-to-one
https://github.com/frzam/zero-to-one
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/frzam/zero-to-one
- Owner: frzam
- Created: 2021-03-08T18:22:00.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-07T13:46:09.000Z (almost 4 years ago)
- Last Synced: 2025-02-15T17:51:18.523Z (4 months ago)
- Language: HTML
- Size: 1.43 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# zero-to-one
## Cheat Sheet
---
### Basics
|Tags | Usage |
|:--- |:--- |
|`` |This tells the browser that this document is of type html.|
| `` |All the code inside these tags are html code. |
| `` |Head defines the top portion of the browser, and most common tag there is `` |
| `` |Every thing that we see in the browser window lies inside body.|
| `` |Title is present in the head of browser, and used to give title to webpage. For ex: **facebook** |
| `` |Header 1 or h1 is used to give heading in browser. |
| `Instagram`|This is called as link |g. It is used to define links in our webpage. |
|``| Any code inside comments will not display on screen. It is used to mention the logic of the code.|### Structure
|Tags | Usage |
|:--- |:--- |
|``| Defines a section in a document (block-level) It is used to divide big webpage into multiple smaller component.|
|``|Defines a section in a document (inline)|
|`
`| It is used to break line a paragraph.|
|`
`|It is used to make a horizontal rule(line) in webpage.|
|``|Image tag is used to show image on the browser. It takes one attribute **src** which is takes location of image to show. |
### Heading
|Tags | Usage |
|:--- |:--- |
| `This is heading 1
`|Largest heading|
| `This is heading 2
`|Smaller than h1 and larger than h3.|
| `This is heading 3
`|Smaller than h2 and larger than h4.|
| `This is heading 4
`|Smaller than h3 and larger than h5.|
| `This is heading 5
`|Smaller than h4 and larger than h6|
| `This is heading 6
`|Smallest heading.|### Formatting
|Tags | Usage |
|:--- |:--- |
|`` |Bold text|
| ``|Important text |
| ``|Italic text|
| ``|Emphasized text|
| ``|Marked text|
| ``|Smaller text|
| ``|Deleted text|
| ``|Inserted text|
| ``|Subscript text|
| ``|Superscript text|### List
|Tags | Usage |
|:--- |:--- |
|`` | An unordered list. The list item will be marked as bullets(small black circle) |
|`` | An ordered list. The list items will be marked as numbers by default.|
|`- ` | li is used do denote each list item present in ordered or unordered list. |
|`` | It defines the description list. |
|`- ` | It defines the term in a description list |
|`- ` | It describes the term in description list |
### CSS Basics
|||