An open API service indexing awesome lists of open source software.

https://github.com/frzam/zero-to-one


https://github.com/frzam/zero-to-one

Last synced: about 2 months ago
JSON representation

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.|
      |`
    1. ` | 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

      |||