https://github.com/pixelbrackets/hello-github-world
»Hello World« - This is a test repository
https://github.com/pixelbrackets/hello-github-world
Last synced: 23 days ago
JSON representation
»Hello World« - This is a test repository
- Host: GitHub
- URL: https://github.com/pixelbrackets/hello-github-world
- Owner: pixelbrackets
- Created: 2012-03-31T11:28:02.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2020-06-17T12:20:58.000Z (almost 6 years ago)
- Last Synced: 2025-03-06T18:29:38.025Z (about 1 year ago)
- Homepage:
- Size: 43 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hello Github World
**🚧 This is a demo repository 🚧**
## Badges




[](https://gitter.im/pixelbrackets/hello-github-world?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
## Markdown
**Headlines**
# This is an H1 #
## This is an H2 ##
### This is an H3 ###
#### This is an H4 ####
**Unordered List**
* Red
* Green
* Blue
**Ordered List**
1. Apple
1. Banana
1. Orange
**Blockquote**
> This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
> consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.
> Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.
>
> Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse
> id sem consectetuer libero luctus adipiscing.
**Links**
This is an [example link](http://example.com/).
**Code**
function PrintDate() {
today = new Date();
document.write('Date: ', today.getMonth()+1, '/', today.getDate(), '/', today.getYear());
}