We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c8482c commit a2e0127Copy full SHA for a2e0127
1 file changed
js/script.js
@@ -69,7 +69,7 @@ let remove = document.getElementById('remove')
69
show.onclick = function(){
70
let main = document.getElementById('main')
71
let heading = document.createElement('h1')
72
- heading.textContent = 'Hello world'
+ heading.textContent = 'This is a new heading'
73
heading.style.textAlign = 'center'
74
main.style.background = 'red'
75
heading.style.color = 'white'
@@ -80,7 +80,7 @@ show.onclick = function(){
80
addpara.onclick = function(){
81
82
let para = document.createElement('p')
83
- para.textContent = 'emnei'
+ para.textContent = 'This is a new paragraph'
84
para.style.textAlign = 'center'
85
para.style.color = 'white'
86
main.appendChild(para)
0 commit comments