Skip to content

Commit c1724c6

Browse files
committed
Removed the </ > things
1 parent 079c41e commit c1724c6

14 files changed

+7
-85
lines changed

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

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ 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-
< />
1312

1413
### Prerequisites
1514

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

4847

49-
50-
< />
51-
5248
## Changing Readme and Adding more files.
5349

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

7672
<BrowserWindow url="https://github.com/sanjay-kv/Git-Demo/edit/main/README.md">
77-
<>
7873
<h1>Git-Demo</h1>
7974
<p>This is a demo installation via GUI</p>
8075

8176
<h1>Developed by Sanjay Viswanathan</h1>
8277
<p>This readme contains my resume, please refer to the attached file in the repo.</p>
83-
84-
</>
8578
</BrowserWindow>
8679

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

138131
## Conclusion
139132

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.
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.

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ 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-
< />
1413

1514
## HTML Attributes
1615

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

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ 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-
< />
1312

1413
## Prerequisites
1514

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

5958

6059

61-
< />
62-
63-
6460
### Browser Rendering
6561

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

114110

115-
116-
117111
<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>
118112

119113
## Conclusion
120114

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.
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.

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ 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-
1513
## HTML Attributes
1614

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

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ 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-
< />
1413

1514
## HTML Attributes
1615

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

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ 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-
< />
1312

1413
### Prerequisites
1514

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

48-
49-
50-
< />
51-
5247
## Changing Readme and Adding more files.
5348

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

7671
<BrowserWindow url="https://github.com/sanjay-kv/Git-Demo/edit/main/README.md">
77-
<>
7872
<h1>Git-Demo</h1>
7973
<p>This is a demo installation via GUI</p>
8074

8175
<h1>Developed by Sanjay Viswanathan</h1>
8276
<p>This readme contains my resume, please refer to the attached file in the repo.</p>
83-
84-
</>
8577
</BrowserWindow>
8678

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

133125
## Conclusion
134126

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.
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.

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

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ 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-
< />
1312

1413
### Prerequisites
1514

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

48-
49-
50-
< />
51-
5247
## Changing Readme and Adding more files.
5348

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

7671
<BrowserWindow url="https://github.com/sanjay-kv/Git-Demo/edit/main/README.md">
77-
<>
7872
<h1>Git-Demo</h1>
7973
<p>This is a demo installation via GUI</p>
8074

8175
<h1>Developed by Sanjay Viswanathan</h1>
8276
<p>This readme contains my resume, please refer to the attached file in the repo.</p>
83-
84-
</>
8577
</BrowserWindow>
8678

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

124116

125-
126117
Now you will be able to see the uploaded resume.
127118

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

132123
## Conclusion
133124

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.
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.

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

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ 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-
< />
1312

1413
### Prerequisites
1514

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

48-
49-
50-
< />
51-
5247
## Changing Readme and Adding more files.
5348

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

7671
<BrowserWindow url="https://github.com/sanjay-kv/Git-Demo/edit/main/README.md">
77-
<>
7872
<h1>Git-Demo</h1>
7973
<p>This is a demo installation via GUI</p>
8074

8175
<h1>Developed by Sanjay Viswanathan</h1>
8276
<p>This readme contains my resume, please refer to the attached file in the repo.</p>
83-
84-
</>
8577
</BrowserWindow>
8678

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

140132
## Conclusion
141133

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.
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/milestone.md

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ 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-
< />
1312

1413
### Prerequisites
1514

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

48-
49-
50-
< />
51-
5247
## Changing Readme and Adding more files. Change
5348

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

7671
<BrowserWindow url="https://github.com/sanjay-kv/Git-Demo/edit/main/README.md">
77-
<>
7872
<h1>Git-Demo</h1>
7973
<p>This is a demo installation via GUI</p>
8074

8175
<h1>Developed by Sanjay Viswanathan</h1>
8276
<p>This readme contains my resume, please refer to the attached file in the repo.</p>
83-
84-
</>
8577
</BrowserWindow>
8678

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

128120

129-
130121
Now you will be able to see the uploaded resume.
131122

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

136127
## Conclusion
137128

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.
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.

docs/GitHub/intro-github.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ 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-
< />
1918

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

9291
:::
9392

94-
< />
9593

9694
### Watch the video Tutorial
9795
<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>
9896

99-
< />
100-
10197
## Conclusion
10298

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.
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.

0 commit comments

Comments
 (0)