<b ? ="border:solid"> | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

<b ? ="border:solid">

Please Tell me Which word put beside question mark

9th Jun 2023, 8:28 PM
κιτ κατ
κιτ κατ - avatar
14 Answers
+ 4
style
9th Jun 2023, 8:47 PM
A͢J
A͢J - avatar
+ 2
Danish Zubair , please provide details/answers based on requested question. When needed ask learner to learn the lesson again.
9th Jun 2023, 11:15 PM
D Shah 🎯⏳️
D Shah 🎯⏳️ - avatar
+ 2
Danish Zubair i am html student still am not study About css
10th Jun 2023, 8:34 AM
κιτ κατ
κιτ κατ - avatar
+ 2
Danish Zubair thank You So Much For Your honest suggestion
10th Jun 2023, 9:35 AM
κιτ κατ
κιτ κατ - avatar
0
PART1 You need to tell your markup text that you are using some styling rules to your bold text tag. HTML will only know if you want to add styling rules in your markup text, if you insert "style" text, jn your HTML. This method of including your stying rule in your HTML tag, is known as inline CSS. There are 2 other methods, which are called internal and external CSS. Here is an example of an inline CSS: <p style="font-size: 50px;">Hello</p> Here I have included my styling in this paragraph tag. By doing this, no other tags will be affected, not even other paragraph texts, only the style given tag, will have a font size of 50 px. Inline CSS, is not recommended, as it is really unefficient way of adding the styling in your webpage. The second method is called internal CSS. Internal CSS is when you add your styling, in your HTML document, inside the <style> tag. <style> tag is used inside the <head> tag, and, it hosts all your CSS styling. MESSAGE BREAKED, DUE TO THE AMOUNT OF THE MESSAGE, READ NEXT MESSAGE.
9th Jun 2023, 10:23 PM
Danish Zubair
Danish Zubair - avatar
0
PART 1 MESSAGE CONTINUED You can write as much CSS as you want, in an internal CSS. Using internal CSS, is really useful, especially if you require all your webpage in one HTML document, so you can save space, or you can find all the code fpr that webpage in one document. This increases the file size, so use it, only when it is necessary. Here is an example of internal CSS: <!DOCTYPE html> <html> <head> <title>Webpage</title> <style> p{ color:red; font-size: 20px; font-weight: bold; } body{ background-color: white; color: red; padding: 0; } </style> </head> <body> <p>Hello</p> </body> </html> The third method of adding your styling in your webpage is to add externally. To do this, you have to create a document, write your styling code, name the document with the extension of .css and then go back to your HTML and link it. This is the most efficient way of adding styling in your webpage, and it is recommended to be used when creating large websites. READ PART 2, AS I CAN'T WRITE ANYMORE IN THIS MESSAGE.
9th Jun 2023, 10:35 PM
Danish Zubair
Danish Zubair - avatar
0
PART 2 Here is an example of an external CSS document linked with HTML: styles.css: body{ background-color:red; } p{ background-size:50px; } index.html: <!DOCTYPE> <html> <head> <title>Webpage</title> <link rel="stylesheet href="styles.css"> </head> <body> <p>Hello</p> </body> </html> Here, <link rel="stylesheet" href="styles.css"> links your CSS file with your HTML file where rel means relationship and href means that whatever comes after, the browser will look at that file name, in your environment, and if it in your environment, it will apply the styling in your webpage. Note: external CSS can be functional on downloaded compilers, such as VS Code, etc, as online compilers, mostly don't support external css files to be renamed, from their default name (styles.css)
9th Jun 2023, 10:44 PM
Danish Zubair
Danish Zubair - avatar
0
D Shah 🎯⏳️ ok, I have covered the answer requested, but I thought to give them further knowledge about this, so it can help them while learning. Anyway, sorry for this, I will take this in consideration next time. Thank you for providing me with a feedback. Once again sorry for this.
9th Jun 2023, 11:20 PM
Danish Zubair
Danish Zubair - avatar
0
Thanks Everyone I got My Answer And it's "style"
10th Jun 2023, 5:20 AM
κιτ κατ
κιτ κατ - avatar
0
κιτ κατ read also, the different types of how ypu can style CSS, in my comments, as that could help you, in future.
10th Jun 2023, 7:25 AM
Danish Zubair
Danish Zubair - avatar
0
κιτ κατ ok, krrp this in mind,as it will help you a lot when you are learning spme introduction to css.
10th Jun 2023, 8:35 AM
Danish Zubair
Danish Zubair - avatar
0
I am Abdul moiz I am html student I have read all css book if any one have doubt than message me on instagram my id is amoiz12423 or message on this number 81696 06033
11th Jun 2023, 4:49 AM
Moiz Tatli
Moiz Tatli - avatar
0
style
11th Jun 2023, 4:06 PM
Chathuranga Jayanath
Chathuranga Jayanath - avatar
0
<b?="border:solid"> please tell me which word put beside question mark html
18th Apr 2024, 4:19 PM
charles mccarthhy
charles mccarthhy - avatar