You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HTML (HyperText Markup Language) is the most basic building block of the Web. It defines the meaning and structure of web content. Other technologies besides HTML are generally used to describe a web page's appearance/presentation (CSS) or functionality/behavior (JavaScript).
9
+
10
+
## What is HTML?
11
+
12
+
HTML is not a programming language; it is a markup language that defines the structure of your content. HTML consists of a series of elements, which you use to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way.
13
+
14
+
## Basic HTML Structure
15
+
16
+
Every HTML document has a basic structure:
17
+
18
+
```html
19
+
<!DOCTYPE html>
20
+
<html>
21
+
<head>
22
+
<title>Page Title</title>
23
+
</head>
24
+
<body>
25
+
<h1>My First Heading</h1>
26
+
<p>My first paragraph.</p>
27
+
</body>
28
+
</html>
29
+
```
30
+
31
+
-`<!DOCTYPE html>`: The declaration defines that this document is an HTML5 document.
32
+
-`<html>`: The root element of an HTML page.
33
+
-`<head>`: Contains meta information about the HTML page.
34
+
-`<title>`: Specifies a title for the HTML page.
35
+
-`<body>`: Defines the document's body, and is a container for all the visible contents.
Copy file name to clipboardExpand all lines: docs/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ The recode hive GitHub organization ([github.com/recodehive](https://github.com/
46
46
recode hive has 600+ GitHub followers and contributors from all over the world. Here is how to become part of it:
47
47
48
48
1.**Join the GitHub Organization** — raise an issue using the [Invite Link](https://github.com/Recode-Hive/Support/issues/new?assignees=&labels=invite+me+to+the+community&projects=&template=invitation.yml&title=Please+invite+me+to+the+Recode-Hive+GitHub+Community+Organization) and you'll receive an email invitation.
49
-
2.**Join Discord** — chat with members, ask questions, and find help in real time at [discord.gg/Yxv9RA3r](https://discord.gg/Yxv9RA3r).
49
+
2.**Join Discord** — chat with members, ask questions, and find help in real time at [discord.gg/dh3TA8U55Q](https://discord.gg/dh3TA8U55Q).
50
50
3.**Practice open source** — make your first PR in the [Opensource-practice](https://github.com/recodehive/Opensource-practice) repository.
51
51
4.**Subscribe to the newsletter** — get career insights delivered to your inbox at [recodehive.substack.com](https://recodehive.substack.com/).
Copy file name to clipboardExpand all lines: src/components/faqs/faqs.tsx
+14-20Lines changed: 14 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ const faqData = [
27
27
{
28
28
question: "How can I contribute as a beginner?",
29
29
answer:
30
-
"We've designed our community specifically with beginners in mind! Contributing to open-source can seem intimidating, but we provide a supportive environment for learning.<br><br><strong>Beginner-Friendly Steps:</strong><br>1. Start with our <a href='/docs/GitHub/GitHub-basics' class='text-indigo-600 hover:text-indigo-800 underline'>GitHub Basics guide</a><br>2. Join our <a href='https://discord.gg/Yxv9RA3r' target='_blank' rel='noopener noreferrer' class='text-indigo-600 hover:text-indigo-800 underline'>Discord community</a> for support<br>3. Look for 'good first issue' labels in our repositories<br>4. Follow our <a href='https://github.com/recodehive/recode-website#getting-started' target='_blank' rel='noopener noreferrer' class='text-indigo-600 hover:text-indigo-800 underline'>step-by-step contribution guide</a><br><br>🎯 <a href='/docs/GitHub/GitHub-basics/first-opensource-code' class='text-indigo-600 hover:text-indigo-800 underline'>Make your first open-source contribution</a>",
30
+
"We've designed our community specifically with beginners in mind! Contributing to open-source can seem intimidating, but we provide a supportive environment for learning.<br><br><strong>Beginner-Friendly Steps:</strong><br>1. Start with our <a href='/docs/GitHub/GitHub-basics' class='text-indigo-600 hover:text-indigo-800 underline'>GitHub Basics guide</a><br>2. Join our <a href='https://discord.gg/dh3TA8U55Q' target='_blank' rel='noopener noreferrer' class='text-indigo-600 hover:text-indigo-800 underline'>Discord community</a> for support<br>3. Look for 'good first issue' labels in our repositories<br>4. Follow our <a href='https://github.com/recodehive/recode-website#getting-started' target='_blank' rel='noopener noreferrer' class='text-indigo-600 hover:text-indigo-800 underline'>step-by-step contribution guide</a><br><br>🎯 <a href='/docs/GitHub/GitHub-basics/first-opensource-code' class='text-indigo-600 hover:text-indigo-800 underline'>Make your first open-source contribution</a>",
31
31
},
32
32
{
33
33
question: "How can I earn from this recode hive organisation?",
0 commit comments