Heyy all! ๐
This is the CSS for Beginners Part 6...These are my Previous parts! ๐
Get Started!
Fun Revision Project Starts!
Let's start the Revision project!
Just study this Image and try to understand what are the new things you can see in here!
Let's see the new things ๐๐ป
Fonts are different.
The text size is Bigger than normal! Let's learn how to do it!
Here are some of the Steps! ๐๐ป
First, you just try to do it and then I am gonna show you the solution as well!
Steps to do! ๐ช
As this is the CSS for BEGINNER's Course, I am gonna teach each n every step!
Step 1 ๐ธ
Step 2 ๐ธ
- After making 2 files! Do this...๐๐ป
Step 3 ๐ธ
- After making the BoilerPlate in an HTML file! Do this...๐๐ป
Step 4 ๐ธ
- After giving the title of your choice! Do this...๐๐ป
Step 5 ๐ธ
- After making the H1 tag in the body section! Do this...๐๐ป
Step 6 ๐ธ
- After making the P tag we'll LINK to DAY 6.css to style the text!
- After linking to styles.css let's see the Output of your HTML file by Going Live...๐๐ป
HTML code โณ
HTML code till now ๐
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>CSS Day 6</title>
</head>
<body>
<h1>Code Arena!</h1>
<p>This channel provides you Daily Videos and a lot of fun in writing code! </p>
</body>
</html>
Let's style it in CSS...๐๏ธ
Step 7 ๐ธ
- After Linking to styles.css! Do this...๐๐ป
Step 8 ๐ธ
- After jumping to your CSS file...Do this! ๐๐ป
Step 9 ๐ธ
- After making the whole black background...Do this! ๐๐ป
Step 10 ๐ธ
- After selecting the h1 tag and giving the text color yellow! Do this...๐
- After selecting the Lobster Font from Google Fonts...Paste this HTML link in your Head Section! ๐
- After pasting the HTML link of Google fonts...Paste the CSS link in your DAY6.css file...Like this ๐
Step 11 ๐ธ
- And yes we did it! The font of "Code Arena" is done! ๐ Now do this! ๐
- After styling the color of the p tag in your CSS file...We will change the font of the P tag...Now Do this! ๐
- So I have not taken the Font from Google Fonts for the P tag because I wanted to show you guys that there are also some fonts available by the browser in VS code!
And we are completely done with our Project! Congrats! ๐
HTML FULL CODE!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="DAY 6.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lobster&display=swap" rel="stylesheet">
<title>CSS Day 6</title>
</head>
<body>
<h1>Code Arena!</h1>
<p>This channel provides you Daily Videos and a lot of fun in writing code! </p>
</body>
</html>
CSS FULL CODE!
CSS code here! ๐
body{
background-color: black;
}
h1{
color: yellow;
font-family: 'Lobster', cursive;
font-size: 130px;
}
p{
color: yellowgreen;
font-size: 50px;
font-family: 'Trebuchet MS';
}
Here's the Final output! ๐ฅณ
If you find this article helpful and fun then do share it with your friends! And don't forget to like it!
Hopefully, you're cleared with all the things! If you've any doubts about any of these topics that's fine, ask me in the comments below or my Twitter DM I will reply 100%.
That is it for today everyone! I'll see you all in the next one! Till then Take care and goodbye! ๐
Connect with me!
My Twitter Account: ๐ค๐ปhttps://twitter.com/AmenaiSabuwala
My Blog: ๐ค๐ปhttps://blog.amenas.me/
My YouTube: ๐ค๐ปCode Arena - YouTube
Share your achievements on Twitter! ๐
And I'll see you all in my next article till then take care and goodbye! ๐๐ป