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

https://github.com/bankole2000/fwdc

Demo repo to teach Git
https://github.com/bankole2000/fwdc

Last synced: 4 months ago
JSON representation

Demo repo to teach Git

Awesome Lists containing this project

README

          

# FWDC Getting good with Git

# header1
## header 2
### header 3
#### header 4
##### header 5
###### header 6

This is normal

**This is Bold** __Underline__

*this* or _this_ is italics

* list item
* list item 2
* list item 3

1. list item
1. list item 2
1. list item 3

This is the [Link to google](https://google.com)

> This is a highlight note

this `code` is inline

I used `html css` and `javascript` to make this

```html


This is a block of code

```
```javascript
const myFunc = () => {
secttimeout(()=> {
console.log("Hello world")
}, 100)
}
```