From 046b9b0ad3d36ef18584e4993cf174afa37b0af4 Mon Sep 17 00:00:00 2001 From: your name Date: Sun, 10 May 2020 19:42:22 +0530 Subject: [PATCH 1/2] hello world --- README.md | 1 + test.py | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 test.py diff --git a/README.md b/README.md index 42874e6..5e971b9 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # test-repo TEST REPOSITORY +print("Hello") diff --git a/test.py b/test.py new file mode 100644 index 0000000..f000654 --- /dev/null +++ b/test.py @@ -0,0 +1,5 @@ +print("Hello") + +def main(): + print("From main function") + \ No newline at end of file From c1ddb23a254d135f2dae9dccb78020bcde3eef87 Mon Sep 17 00:00:00 2001 From: your name Date: Tue, 12 May 2020 15:51:28 +0530 Subject: [PATCH 2/2] HTML SITE USING BOOTSTRAP --- docs/first.html | 62 +++++++++++++++++++++++++++++++++++++++++++++++++ docs/style.css | 15 ++++++++++++ 2 files changed, 77 insertions(+) create mode 100644 docs/first.html create mode 100644 docs/style.css diff --git a/docs/first.html b/docs/first.html new file mode 100644 index 0000000..8e2e830 --- /dev/null +++ b/docs/first.html @@ -0,0 +1,62 @@ + + + +WANDER + + + +

Let's Travel

+ +

+ + + + + + +
+ ... +
+ +

Let's Travel

+ Go somewhere +
+
+ + + + + + + + + + \ No newline at end of file diff --git a/docs/style.css b/docs/style.css new file mode 100644 index 0000000..6ef3f07 --- /dev/null +++ b/docs/style.css @@ -0,0 +1,15 @@ +body { + background-color: rgb(204, 168, 168); + opacity: 0.9; + } + + h1 { + color: rgb(20, 3, 3); + text-align: center; + } + + p { + text-align: center; + font-family: verdana; + font-size: 20px; + } \ No newline at end of file