Skip to main content

Posts

Showing posts from March, 2023

Insert css using Js

 Source code function import_css (){     var head = document . head ;     var style = document . createElement ( 'link' );     style. rel = "stylesheet" ;     style. id = "style" ;     style. href = "./style.css" ;     head. append (style); }

html template

 Source code: <! 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" >     < title > Youtbe videos </ title > </ head > < body >     <!--Import-->         <!--end--> </ body > </ html >

Java script prompt

 Source code: <! 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" >     < title > prompt </ title > </ head > < body >     < script >         let name = prompt ( "What is your name" );         const p = document . createElement ( 'p' )         p . innerText = name ;         document . body . append ( name )     </ script >     </ body > </ html >