You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- index.html --><!DOCTYPE html><htmllang="en"><head><metacharset="UTF-8"><metaname="viewport" content="width=device-width, initial-scale=1.0"><title>Namaste React</title></head><body><h1>Hello World using HTML</h1><divid="root"><h1>Not Rendered</h1></div><!-- Injecting React and ReactDOM CDN Link --><scriptcrossoriginsrc="https://unpkg.com/react@18/umd/react.production.min.js"
></script><scriptcrossoriginsrc="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js"
></script><!-- Linking External JavaScript File --><scriptsrc="./App.js"></script></body></html>
Q1): Build your first Hello World program using, HTML
<h1>Hello World using HTML</h1>
Q2): Build your first Hello World program using, JavaScript DOM
// App.jsconstheading=document.createElement("h1");heading.textContent="Hello World using JavaScript DOM";constroot=document.getElementById("root");root.appendChild(heading);
Q3): Build your first Hello World program using, React
// App.jsconstheading=React.createElement("h1",null,"Hello World using React");constroot=ReactDOM.createRoot(document.getElementById("root"));root.render(heading);