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>
There are some parts you should pay attention to the video. I'm going to give you a project where you can use HTML and CSS. We will explore many special things about CSS together, but know I will provide you the instructions of your project.
Instructions
First, create a folder called HTML TUTORIAL. Then, name your HTML file puppy.html. Next, you're going to add CSS to your HTML code.
Here's how you can add your CSS code:
First, create a folder called HTML TUTORIAL. Then, name your HTML file puppy.html. Next, you're going to add CSS to your HTML code.
Here's how you can add your CSS code:
<head>
<link rel="stylesheet" href="css.css">
</head>
css.css is the name of your CSS file; you can name it whatever you want. Your project should resemble the image attached below.👍2
Use this image as a reference to build your project. Next time, we can work on it together. Until that, have a good work. If you finish it, feel free to contact me and share your source code with me.
👍4
JavaScript is hard
Coding is hard
Web3 is hard
CSS is hard
Yes, everything will be hard at first, but it will become easy once you start learning it and put your time and effort into it!
Google, Microsoft, Apple was not built in a day, not even a month, and not even a year.
#SelfTaughtDev
#FullStackDev
#coding
Link:@SelfTaughtDev1
Coding is hard
Web3 is hard
CSS is hard
Yes, everything will be hard at first, but it will become easy once you start learning it and put your time and effort into it!
Google, Microsoft, Apple was not built in a day, not even a month, and not even a year.
#SelfTaughtDev
#FullStackDev
#coding
Link:@SelfTaughtDev1
🤝2
Self Taught Dev
Hello guys! How are u doing?How has ur summer been?
Today, I will share my project that I created using HTML , CSS and JavaScript.
@SelfTaughtDev1