From 73945b214b8e67427f6c4157e76a448604fe6b57 Mon Sep 17 00:00:00 2001 From: Your Name Date: Thu, 3 Dec 2020 17:01:19 -0700 Subject: [PATCH 1/2] Nav done --- .vscode/settings.json | 3 +++ Flexbox Module Challenge.html | 28 ++++++++++++++++++++++++++++ index.html | 10 ++++++++++ projects.html | 4 ++++ style/index.css | 4 +++- 5 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 .vscode/settings.json create mode 100644 Flexbox Module Challenge.html diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..6f3a2913e --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} \ No newline at end of file diff --git a/Flexbox Module Challenge.html b/Flexbox Module Challenge.html new file mode 100644 index 000000000..c4909949f --- /dev/null +++ b/Flexbox Module Challenge.html @@ -0,0 +1,28 @@ + + + + + + + Document + +ul { + list-style-type: none; + margin: 0; + padding: 0; + } + + li a { + display: block; + width: 60px; + background-color: #dddddd; + } + + + + + \ No newline at end of file diff --git a/index.html b/index.html index d01f779ff..288793ee4 100644 --- a/index.html +++ b/index.html @@ -1,10 +1,20 @@ + Document +li { + float:left; +} + +a { + display: block; + padding: 8px; + +} diff --git a/projects.html b/projects.html index 266e620b0..7fbac2f66 100644 --- a/projects.html +++ b/projects.html @@ -4,6 +4,10 @@ Document + +
Franky Lopez
+
My PROJECTS
+
About me

PROJECTS

diff --git a/style/index.css b/style/index.css index 440e53514..2db0fdd61 100644 --- a/style/index.css +++ b/style/index.css @@ -1 +1,3 @@ -/* Add CSS styling here */ \ No newline at end of file +body{ + background-color: aqua; +} \ No newline at end of file From 89f2ed99cdd1dd30153b78f2025502fdbac7d845 Mon Sep 17 00:00:00 2001 From: Your Name Date: Thu, 3 Dec 2020 17:01:54 -0700 Subject: [PATCH 2/2] Nav Done --- style/index.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/style/index.css b/style/index.css index 2db0fdd61..875c976a9 100644 --- a/style/index.css +++ b/style/index.css @@ -1,3 +1,12 @@ + \ No newline at end of file