+ One:В 'Hi Mary.' Two:В 'Oh, hi.'
+ One:В 'How are you doing?'
+ Two:В 'I'm doing alright. How about you?'
+ One:В 'Not too bad. The weather is great isn't it?'
+ Two:В 'Yes. It's absolutely beautiful today.'
+ One:В 'I wish it was like this more frequently.'
+ Two:В 'Me too.'
+ One:В 'So where are you going now?'
+ Two:В 'I'm going to meet a friend of mine at the department store.'
+ One:В 'Going to do a little shopping?'
+ Two:В 'Yeah, I have to buy some presents for my parents.'
+ One:В 'What's the occasion?'
+ Two:В 'It's their anniversary.'
+ One:В 'That's great. Well, you better get going. You don't want to be late.'
+ Two:В 'I'll see you next time.'
+ One:В 'Sure. Bye.'
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/HW#4/replacer.js b/HW#4/replacer.js
new file mode 100644
index 0000000..72d8dfc
--- /dev/null
+++ b/HW#4/replacer.js
@@ -0,0 +1,5 @@
+let block = document.querySelector('.text');
+document.querySelector('.replace').addEventListener('click',()=>{
+ block.textContent = block.textContent.replace(/\B'|'\B/g,'"');
+ block.style.color = 'green';
+})
\ No newline at end of file
diff --git a/HW#4/style.css b/HW#4/style.css
new file mode 100644
index 0000000..1b2f7d2
--- /dev/null
+++ b/HW#4/style.css
@@ -0,0 +1,13 @@
+.text{
+ border-bottom: 4px solid black;
+}
+.error-msg{
+ color: red;
+ margin: 10px 0;
+}
+.valid{
+ border: 2px solid green;
+}
+.invalid{
+ border: 2px solid red;
+}
\ No newline at end of file