This channel is created to learn coding together from zero to hero, and I was just beginner to coding. I will post what I learn, about coding and i will share you my journey to become full stack web dev.
#Web dev
#FullStackDev
#SelfTaughtDev
#coding Together
#DevCommunity
👍1🔥1
I was three days into learning the basics of HTML and CSS, and I had already seen improvement in myself. Learning HTML felt like understanding how to build a house – it was like the basement /foundation of house /structure of web/. However, when i came to CSS, it was like adding style and color to the house something stuff like that . I was start to understand the basics of both languages .
#CodingJourney#programming
#DevCommunity#HTML#CSS
#SelfTaughtDev #coding
#WebsiteDevelopment
#Frontend Dev
@SelfTaughtDev1
Day 1
Hello, guys! This is our first day diving into the web development world. Today, I will share documentation with you for HTML. Reading documentation will make it easier to understand. I used to start reading without documentation and would wonder why I didn't understand it. Then I realized that I must read the documentation first, and then it became easy to understand. If you start without reading the documentation, it's like playing pool with no holes and balls.
#Day01
#SelfTaughtDev
#DevCommunity
#WebDev
#coding Journey
#FullStackDev
#FrontendDev
Link:@SelfTaughtDev1
Day 01
Hi there, let's discuss abt HTML.
HTML: Hyper Text Markup Language
- It is the skeleton/structure of a website.
- Most tags have opening and closing tags. For example, <html>,</html>, etc.
- Some tags have only opening tags. For example, <br>, <hr>, etc.
<!DOCTYPE html> tells the web browser the HTML version (in this case, version 5).
<html>
<head>
- It contains the header file for the web page.
- It contains links for CSS.
</head>
<body>
- It contains the actual HTML code.
- We can add JavaScript here.
</body>
</html>
#Day01
#SelfTaughtDev
#DevCommunity
#WebDev
#codingJourney
#FullStackDev
#FrontendDev
Link:@SelfTaughtDev1
🔥4👍1👏1
Road Map to becoming Full Stack developer.
#DevCommunity
#WebDev
#codingJourney
#FullStackDev
#FrontendDev
Link:@SelfTaughtDev1
Self Taught Dev Day 02
Hello junior developer, how was everything? Is everything okay? I thought I missed a few days, sorry for that. I was feeling like I lost my mind and interest in everything, that's the reason I was absent. But today, I listened to a song and my brain started to function in a good way. I will share the song with you; it's like mental medicine. Today, we are going to discuss HTML, and I will give you a project to build. We are going to start our discussion at 4:00 PM o'clock.
#DAY02Discussion
#DevCommunity
#FrontendDev
#WebDev
#SelfTaughtDev
#coding
#FullStackDev
Link:@SelfTaughtDev1
🔥2
Audio
Whenever you feel weak, listen to this song. I know it's a World Cup song, but if you listen to its lyrics, you will feel something, believe me.
DayO2
Hi Dev, I think all of you are ready. Let's start our discussion. On day 01, we learned the basics of HTML, but today we are going to explore HTML tags such as:
- Header
- Body
- Div
- Span, etc.
The <h1> tag is called a header tag. There are many headers like h1, h2, h3, h4, h5, h6, and they have different sizes.
The <br> tag only has an opening tag. It is called a break, and we use it to separate statements from one another.
The <hr> tag is called a horizontal line. It has no closing tag.
The <p> tag is for paragraphs. We use it to write paragraphs on our webpage.
The <span> tag does not create a line change after it.
The <div> tag creates a division between contents.
#DAY02Discussion
#DevCommunity
#FrontendDev
#WebDev
#SelfTaughtDev
#coding
#FullStackDev
Link:@SelfTaughtDev1
First HTML Code
First, we create a folder called "HTML TUTORIAL." Then, we open our HTML code editor. I use the Web Code app. Next, we choose an HTML file and navigate to our "HTML TUTORIAL" folder. Within that folder, we create a file named "htmltutorial.html" and write our HTML code there.
File Name: htmltutorial.html
First, we create a folder called "HTML TUTORIAL." Then, we open our HTML code editor. I use the Web Code app. Next, we choose an HTML file and navigate to our "HTML TUTORIAL" folder. Within that folder, we create a file named "htmltutorial.html" and write our HTML code there.
File Name: htmltutorial.html
<!DOCTYPE html>
<html>
<head>
<noscript>HTML TUTORIAL</noscript>
</head>
<body>
<h1>HTML CODE</h1>
<p>My first HTML code</p>
<p>Hello, world!</p>
</body>
</html>