From 5b6beac6d32f60f01c76ab469efb3b009e31f4da Mon Sep 17 00:00:00 2001 From: Kri'Shawn Brown Date: Sun, 27 Dec 2020 20:00:58 -0500 Subject: [PATCH 1/7] JS-dom project --- js-dom.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 js-dom.html diff --git a/js-dom.html b/js-dom.html new file mode 100644 index 0000000..d64c070 --- /dev/null +++ b/js-dom.html @@ -0,0 +1,20 @@ + + + + + + + + + +
+

Developers for life!!

+
+
+

+
+ + + + + \ No newline at end of file From dd81edf3c048a96e7d15bf27de8576f462248c9f Mon Sep 17 00:00:00 2001 From: Kri'Shawn Brown Date: Tue, 29 Dec 2020 19:06:25 -0500 Subject: [PATCH 2/7] JS-dom project --- js-dom.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/js-dom.html b/js-dom.html index d64c070..3e4a8f7 100644 --- a/js-dom.html +++ b/js-dom.html @@ -7,9 +7,15 @@ +
-

Developers for life!!

+

Developers for life!

+
+ +

From 1d3c2586db45d2e50c80d8ea08cb2231e1333744 Mon Sep 17 00:00:00 2001 From: Kri'Shawn Brown Date: Tue, 29 Dec 2020 20:13:07 -0500 Subject: [PATCH 3/7] DOM.js --- DOM.js | 8 ++++++++ js-dom.html | 22 +++++++++------------- 2 files changed, 17 insertions(+), 13 deletions(-) create mode 100644 DOM.js diff --git a/DOM.js b/DOM.js new file mode 100644 index 0000000..a17fb3d --- /dev/null +++ b/DOM.js @@ -0,0 +1,8 @@ +function sentenceChange() { + document.getElementById("Paragraph1").textContent =("we are coders!"); + } + +function addImage () { + + document.getElementById() +} \ No newline at end of file diff --git a/js-dom.html b/js-dom.html index 3e4a8f7..05d2d92 100644 --- a/js-dom.html +++ b/js-dom.html @@ -3,24 +3,20 @@ - + - -
-

Developers for life!

-
-
- -
-
-

-
+ + + fist +

Developers for life!

+ +

+ + \ No newline at end of file From 1cc3b5f5675ba40a50b6e18684a58c557e8d0079 Mon Sep 17 00:00:00 2001 From: Kri'Shawn Brown Date: Sun, 3 Jan 2021 15:46:29 -0500 Subject: [PATCH 4/7] adjustments --- DOM.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/DOM.js b/DOM.js index a17fb3d..0b34770 100644 --- a/DOM.js +++ b/DOM.js @@ -5,4 +5,9 @@ function sentenceChange() { function addImage () { document.getElementById() +} + +function colorchange() { + document.getElementById("Paragraph1").style.color = "blue" + } \ No newline at end of file From ee45a6ac31998a7316821947c64c0e0752b13e11 Mon Sep 17 00:00:00 2001 From: Kri'Shawn Brown Date: Sun, 3 Jan 2021 16:00:04 -0500 Subject: [PATCH 5/7] changes --- DOM.js | 8 +++++++- js-dom.html | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/DOM.js b/DOM.js index 0b34770..881b885 100644 --- a/DOM.js +++ b/DOM.js @@ -10,4 +10,10 @@ function addImage () { function colorchange() { document.getElementById("Paragraph1").style.color = "blue" -} \ No newline at end of file +} + +function fontSize() { + document.getElementsByTagName('p').style.size = "40px" + +} + diff --git a/js-dom.html b/js-dom.html index 05d2d92..3c4fc9c 100644 --- a/js-dom.html +++ b/js-dom.html @@ -8,6 +8,7 @@ + fist From 6d94205fa24cf3e8346c692f42d6638e1fa0eee3 Mon Sep 17 00:00:00 2001 From: Kri'Shawn Brown Date: Sun, 3 Jan 2021 16:08:29 -0500 Subject: [PATCH 6/7] changes --- DOM.js | 2 ++ lib/about.html | 17 +++++++++++++++++ lib/main.js | 0 3 files changed, 19 insertions(+) create mode 100644 lib/about.html create mode 100644 lib/main.js diff --git a/DOM.js b/DOM.js index 881b885..f5dc3d3 100644 --- a/DOM.js +++ b/DOM.js @@ -17,3 +17,5 @@ function fontSize() { } +document.getElementById("my_button").style.visibility = "hidden"; + diff --git a/lib/about.html b/lib/about.html new file mode 100644 index 0000000..44bdf08 --- /dev/null +++ b/lib/about.html @@ -0,0 +1,17 @@ + + + + About me + + + + +
    +
  • Nickname: booboo
  • +
  • Favorites: music, pizza, The Office
  • +
  • Hometown: Wilmington
  • +
  • Random Fact: Black is my favorite color.
  • +
+
+ + \ No newline at end of file diff --git a/lib/main.js b/lib/main.js new file mode 100644 index 0000000..e69de29 From 4f8c5754632647dd97e44fa5ae70de70390c5c81 Mon Sep 17 00:00:00 2001 From: Kri'Shawn Brown Date: Sun, 3 Jan 2021 16:18:03 -0500 Subject: [PATCH 7/7] changes --- lib/main.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/main.js b/lib/main.js index e69de29..e72cf5c 100644 --- a/lib/main.js +++ b/lib/main.js @@ -0,0 +1,9 @@ +function fontChange() { + document.getElementsByTagName('body').font.family = "Arial, sans-serif" + +} +function colorchange() { + document.getElementsByTagName('li').style.color = "blue" + +} +