+ 18
Can we use HTML and CSS in same web page
32 Antworten
+ 16
<body> ----> HTML
<style> -----> CSS
<script> -----> Javascript
+ 12
Sure 😁.
+ 10
yes u can use but u know this will increase the complexity of your code
so it is better to use css as an external...
and hence u fill your code neat and clean and also better for understanding..
uu understand bro....
+ 9
Yessss
+ 9
Ya we can use html and css in same page👍
+ 8
Yes
With <style> tag that you can insert in either head or body
E.g:
<style>
div {
Color: black;
}
</style>
Or by using "style" attribute
E.g: <div style="color:black;">text</div>
+ 7
Yes
+ 5
yes you can use but
if you use it separate then it will make your code so beautiful and easily identifiable....
+ 5
Yes !
+ 4
Indeed, CSS, in fact, cannot be used WITHOUT HTML (or similar markup language) to give it structure😁
+ 4
Of course yes! Use <style> tag inner <head>
<style> => CSS
<body> => HTML
<script> => JavaScript
<?php ?> => PHP
+ 3
All that in one file named : html
Style --> css
Script --> JavaScript
+ 3
Obviously, how are you going to style your webpage without CSS ?
+ 3
Ideally if you want to use Master pages and inherit from this CSS provides ready to use templates
+ 3
Yes, we can use html and css in same web page.... by using style tag < style> ...there are 3 types of style sheets ..
1.Inline
2.External
3.Internal...
+ 3
it has two way:
internal styling
and
inline styling
+ 3
Yes it tell inline css
+ 3
surely you can use html, css and js codes all in one page.
+ 3
Yes sure!!
HTML: Structure
CSS: Presentation
JavaScript: Behavior
PHP : Backend
CMS: Content Management
+ 2
Yes.
Use the style tag ( <style> ).