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
- Host: GitHub
- URL: https://github.com/bankole2000/fwdc
- Owner: Bankole2000
- Created: 2019-05-25T19:23:47.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-04-28T20:17:28.000Z (about 4 years ago)
- Last Synced: 2025-12-29T17:53:33.970Z (7 months ago)
- Size: 743 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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)
}
```