Skip to content

Commit 901362c

Browse files
committed
Revert "Removed the </ > things"
This reverts commit c1724c6.
1 parent c1724c6 commit 901362c

14 files changed

+85
-7
lines changed

docs/GitHub/GitHub-basics/create-github-repo.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ description: In this tutorial, you will learn about the how to create a GitHub r
99

1010
In the previous post we spoke about commit, fork, clone, in this post we gonna deep dive into the terminology by creating a GitHub Repository from the Scratch.
1111
Inorder to create a project and host, the repository is a place where you add all your program code files and other documentation.
12+
< />
1213

1314
### Prerequisites
1415

@@ -45,6 +46,9 @@ Upon creation you will get a screen like this below, the explanation of each ele
4546
- **`<!-- Your content goes here -->`**: Represents a comment that is not displayed in the browser.
4647

4748

49+
50+
< />
51+
4852
## Changing Readme and Adding more files.
4953

5054
Im going to add my resume and add my name as heading to the ``readme.md`` file
@@ -70,11 +74,14 @@ This readme contains my resume, please refer to the attached file in the repo.
7074
When the above HTML code is rendered in a browser, it will display the following content:
7175

7276
<BrowserWindow url="https://github.com/sanjay-kv/Git-Demo/edit/main/README.md">
77+
<>
7378
<h1>Git-Demo</h1>
7479
<p>This is a demo installation via GUI</p>
7580

7681
<h1>Developed by Sanjay Viswanathan</h1>
7782
<p>This readme contains my resume, please refer to the attached file in the repo.</p>
83+
84+
</>
7885
</BrowserWindow>
7986

8087
### Explanation
@@ -130,4 +137,4 @@ Now you will be able to see the uploaded resume.
130137

131138
## Conclusion
132139

133-
In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications.
140+
In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications.

docs/GitHub/GitHub-basics/first-opensource-code.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ keywords: [html, web development, elements, tags, html elements, html tags, html
1010

1111
HTML Attributes and Values are used to provide additional information about HTML elements
1212

13+
< />
1314

1415
## HTML Attributes
1516

docs/GitHub/GitHub-basics/github-repo-command-line.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ description: In this tutorial, you will learn about the structure of an HTML doc
99

1010
HTML (Hypertext Markup Language) is the standard markup language for creating web pages. It provides the structure and layout of the content on the web. In this tutorial, you will learn about the syntax and structure of HTML.
1111

12+
< />
1213

1314
## Prerequisites
1415

@@ -57,6 +58,9 @@ git push -u origin main
5758

5859

5960

61+
< />
62+
63+
6064
### Browser Rendering
6165

6266
<BrowserWindow url="https://github.com/sanjay-kv/demo-repo" bodyStyle={{padding: 0}}>
@@ -108,8 +112,10 @@ git config --global user.name "Github username"
108112
### Watch the video Tutorial
109113

110114

115+
116+
111117
<iframe width="880" height="480" src="https://www.youtube.com/embed/DO38CZcw5pg?list=PLrLTYhoDFx-kiuFiGQqVpYYZ56pIhUW63" title="Github create repo using command line" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
112118

113119
## Conclusion
114120

115-
In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications.
121+
In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications.

docs/GitHub/GitHub-basics/how-to-clone-repo.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ keywords: [html, web development, attributes, values, html attributes, html valu
1010

1111
HTML Attributes and Values are used to provide additional information about HTML elements
1212

13+
< />
14+
1315
## HTML Attributes
1416

1517
HTML attributes are used to provide additional information about HTML elements.

docs/GitHub/GitHub-basics/how-to-fork.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ description: In this tutorial, you will learn about the structure of an HTML doc
1010

1111
HTML Attributes and Values are used to provide additional information about HTML elements
1212

13+
< />
1314

1415
## HTML Attributes
1516

docs/GitHub/Maintainer-guide/enable-discussion.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ description: In this tutorial, you will learn about the how to create a GitHub r
99

1010
In the previous post we spoke about commit, fork, clone, in this post we gonna deep dive into the terminology by creating a GitHub Repository from the Scratch.
1111
Inorder to create a project and host, the repository is a place where you add all your program code files and other documentation.
12+
< />
1213

1314
### Prerequisites
1415

@@ -44,6 +45,10 @@ Upon creation you will get a screen like this below, the explanation of each ele
4445
- **`<body>`**: Contains the visible content of the document.
4546
- **`<!-- Your content goes here -->`**: Represents a comment that is not displayed in the browser.
4647

48+
49+
50+
< />
51+
4752
## Changing Readme and Adding more files.
4853

4954
Im going to add my resume and add my name as heading to the ``readme.md`` file
@@ -69,11 +74,14 @@ This readme contains my resume, please refer to the attached file in the repo.
6974
When the above HTML code is rendered in a browser, it will display the following content:
7075

7176
<BrowserWindow url="https://github.com/sanjay-kv/Git-Demo/edit/main/README.md">
77+
<>
7278
<h1>Git-Demo</h1>
7379
<p>This is a demo installation via GUI</p>
7480

7581
<h1>Developed by Sanjay Viswanathan</h1>
7682
<p>This readme contains my resume, please refer to the attached file in the repo.</p>
83+
84+
</>
7785
</BrowserWindow>
7886

7987
### Explanation
@@ -124,4 +132,4 @@ Now you will be able to see the uploaded resume.
124132

125133
## Conclusion
126134

127-
In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications.
135+
In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications.

docs/GitHub/Maintainer-guide/github-labels.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ description: In this tutorial, you will learn about the how to create a GitHub r
99

1010
In the previous post we spoke about commit, fork, clone, in this post we gonna deep dive into the terminology by creating a GitHub Repository from the Scratch.
1111
Inorder to create a project and host, the repository is a place where you add all your program code files and other documentation.
12+
< />
1213

1314
### Prerequisites
1415

@@ -44,6 +45,10 @@ Upon creation you will get a screen like this below, the explanation of each ele
4445
- **`<body>`**: Contains the visible content of the document.
4546
- **`<!-- Your content goes here -->`**: Represents a comment that is not displayed in the browser.
4647

48+
49+
50+
< />
51+
4752
## Changing Readme and Adding more files.
4853

4954
Im going to add my resume and add my name as heading to the ``readme.md`` file
@@ -69,11 +74,14 @@ This readme contains my resume, please refer to the attached file in the repo.
6974
When the above HTML code is rendered in a browser, it will display the following content:
7075

7176
<BrowserWindow url="https://github.com/sanjay-kv/Git-Demo/edit/main/README.md">
77+
<>
7278
<h1>Git-Demo</h1>
7379
<p>This is a demo installation via GUI</p>
7480

7581
<h1>Developed by Sanjay Viswanathan</h1>
7682
<p>This readme contains my resume, please refer to the attached file in the repo.</p>
83+
84+
</>
7785
</BrowserWindow>
7886

7987
### Explanation
@@ -114,6 +122,7 @@ Im going to add my resume and add my name as heading to the ``readme.md`` file
114122
</BrowserWindow>
115123

116124

125+
117126
Now you will be able to see the uploaded resume.
118127

119128
### Watch the video Tutorial
@@ -122,4 +131,4 @@ Now you will be able to see the uploaded resume.
122131

123132
## Conclusion
124133

125-
In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications.
134+
In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications.

docs/GitHub/Maintainer-guide/github-project.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ description: In this tutorial, you will learn about the how to create a GitHub r
99

1010
In the previous post we spoke about commit, fork, clone, in this post we gonna deep dive into the terminology by creating a GitHub Repository from the Scratch.
1111
Inorder to create a project and host, the repository is a place where you add all your program code files and other documentation.
12+
< />
1213

1314
### Prerequisites
1415

@@ -44,6 +45,10 @@ Upon creation you will get a screen like this below, the explanation of each ele
4445
- **`<body>`**: Contains the visible content of the document.
4546
- **`<!-- Your content goes here -->`**: Represents a comment that is not displayed in the browser.
4647

48+
49+
50+
< />
51+
4752
## Changing Readme and Adding more files.
4853

4954
Im going to add my resume and add my name as heading to the ``readme.md`` file
@@ -69,11 +74,14 @@ This readme contains my resume, please refer to the attached file in the repo.
6974
When the above HTML code is rendered in a browser, it will display the following content:
7075

7176
<BrowserWindow url="https://github.com/sanjay-kv/Git-Demo/edit/main/README.md">
77+
<>
7278
<h1>Git-Demo</h1>
7379
<p>This is a demo installation via GUI</p>
7480

7581
<h1>Developed by Sanjay Viswanathan</h1>
7682
<p>This readme contains my resume, please refer to the attached file in the repo.</p>
83+
84+
</>
7785
</BrowserWindow>
7886

7987
### Explanation
@@ -131,4 +139,4 @@ Now you will be able to see the uploaded resume.
131139

132140
## Conclusion
133141

134-
In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications.
142+
In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications.

docs/GitHub/Maintainer-guide/milestone.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ description: In this tutorial, you will learn about the how to create a GitHub r
99

1010
In the previous post we spoke about commit, fork, clone, in this post we gonna deep dive into the terminology by creating a GitHub Repository from the Scratch.
1111
Inorder to create a project and host, the repository is a place where you add all your program code files and other documentation.
12+
< />
1213

1314
### Prerequisites
1415

@@ -44,6 +45,10 @@ Upon creation you will get a screen like this below, the explanation of each ele
4445
- **`<body>`**: Contains the visible content of the document.
4546
- **`<!-- Your content goes here -->`**: Represents a comment that is not displayed in the browser.
4647

48+
49+
50+
< />
51+
4752
## Changing Readme and Adding more files. Change
4853

4954
Im going to add my resume and add my name as heading to the ``readme.md`` file.
@@ -69,11 +74,14 @@ This readme contains my resume, please refer to the attached file in the repo.
6974
When the above HTML code is rendered in a browser, it will display the following content:
7075

7176
<BrowserWindow url="https://github.com/sanjay-kv/Git-Demo/edit/main/README.md">
77+
<>
7278
<h1>Git-Demo</h1>
7379
<p>This is a demo installation via GUI</p>
7480

7581
<h1>Developed by Sanjay Viswanathan</h1>
7682
<p>This readme contains my resume, please refer to the attached file in the repo.</p>
83+
84+
</>
7785
</BrowserWindow>
7886

7987
### Explanation
@@ -118,6 +126,7 @@ Im going to add my resume and add my name as heading to the ``readme.md`` file.
118126
</BrowserWindow>
119127

120128

129+
121130
Now you will be able to see the uploaded resume.
122131

123132
### Watch the video Tutorial
@@ -126,4 +135,4 @@ Now you will be able to see the uploaded resume.
126135

127136
## Conclusion
128137

129-
In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications.
138+
In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications.

docs/GitHub/intro-github.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ description: In this tutorial, you will learn about GitHub, its importance, what
1515
---
1616

1717
GitHub is a web-based platform used for version control and collaboration. It allows developers to work together on projects from anywhere in the world. GitHub is built on top of Git, a distributed version control system created by Linus Torvalds in 2005.
18+
< />
1819

1920
:::note
2021
Key Features of SQL:
@@ -90,10 +91,13 @@ The fork is a personal copy of the repo which is already present or uploaded in
9091

9192
:::
9293

94+
< />
9395

9496
### Watch the video Tutorial
9597
<iframe width="880" height="480" src="https://www.youtube.com/embed/GrTV59Y84S8?list=PLrLTYhoDFx-kiuFiGQqVpYYZ56pIhUW63" title="How to start with GitHub in 2024 | Beginner&#39;s Guide" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
9698

99+
< />
100+
97101
## Conclusion
98102

99-
If you think this Github Tutorial starter kit for Beginner was useful to you, then don’t forget to share it with others. Till then, we will meet For uploading your project to your Github account, you need to install Git first. which we will discuss in detail in the next post.
103+
If you think this Github Tutorial starter kit for Beginner was useful to you, then don’t forget to share it with others. Till then, we will meet For uploading your project to your Github account, you need to install Git first. which we will discuss in detail in the next post.

0 commit comments

Comments
 (0)