0

How to add a css program when creating a html program using notepad ?

Is it possible to add css usin note pad .or any other text editor.

6th Jun 2017, 4:24 PM
Darsan Dev S
Darsan Dev S - avatar
2 Respuestas
+ 4
Yes it is possible while using notepad. Add <style> block under <head> block and define strain style definitions as needed. (Embedded style limited to the page on which it is defined) <head> <style> body { background:beige; } .... </style> </head> Alternatively create a separate .css file using in your case notepad and link it with <link> tag under <head> block. (External independent style sheet that could be shared among pages) <head> <link rel="stylesheet" type="text/css" href="style.css"> </head>
6th Jun 2017, 4:37 PM
देवेंद्र महाजन (Devender)
देवेंद्र महाजन (Devender) - avatar
+ 1
ok
6th Jun 2017, 9:49 PM
Bodiuz Zaman Babu
Bodiuz Zaman Babu - avatar