Skip to content

Instantly share code, notes, and snippets.

View imSmaity's full-sized avatar
🎯
Focusing

Suman Maity imSmaity

🎯
Focusing
View GitHub Profile
@imSmaity
imSmaity / DOM.js
Last active January 30, 2022 14:28
This form created by JavaScript
const body=document.body
const label=document.createElement('label')
label.textContent="Name"
const input=document.createElement('input')
input.type='text'
input.id='name'
input.style.border='1px solid green'
input.style.padding='5px'