diff --git a/Web Development Python Projects/6.4 Motivation Meme Project/assets/images/daenerys.jpeg b/Web Development Python Projects/6.4 Motivation Meme Project/assets/images/daenerys.jpeg new file mode 100644 index 0000000..340489b Binary files /dev/null and b/Web Development Python Projects/6.4 Motivation Meme Project/assets/images/daenerys.jpeg differ diff --git a/Web Development Python Projects/6.4 Motivation Meme Project/goal.png b/Web Development Python Projects/6.4 Motivation Meme Project/goal.png new file mode 100644 index 0000000..85d74af Binary files /dev/null and b/Web Development Python Projects/6.4 Motivation Meme Project/goal.png differ diff --git a/Web Development Python Projects/6.4 Motivation Meme Project/index.html b/Web Development Python Projects/6.4 Motivation Meme Project/index.html new file mode 100644 index 0000000..5f700d9 --- /dev/null +++ b/Web Development Python Projects/6.4 Motivation Meme Project/index.html @@ -0,0 +1,37 @@ + + + + + + Motivation Meme + + + + + + + +
+ daenerys holding a black egg +

That Special Moment

+

When you find the perfect avocado at the supermarket

+
+ + + + \ No newline at end of file diff --git a/Web Development Python Projects/6.4 Motivation Meme Project/solution/assets/images/daenerys.jpeg b/Web Development Python Projects/6.4 Motivation Meme Project/solution/assets/images/daenerys.jpeg new file mode 100644 index 0000000..340489b Binary files /dev/null and b/Web Development Python Projects/6.4 Motivation Meme Project/solution/assets/images/daenerys.jpeg differ diff --git a/Web Development Python Projects/6.4 Motivation Meme Project/solution/solution.css b/Web Development Python Projects/6.4 Motivation Meme Project/solution/solution.css new file mode 100644 index 0000000..4a1aa5a --- /dev/null +++ b/Web Development Python Projects/6.4 Motivation Meme Project/solution/solution.css @@ -0,0 +1,21 @@ +body { + background-color: black; +} +h1 { + text-transform: uppercase; + font-size: 3rem; +} + +.poster { + width: 50%; + margin-left: 25%; + margin-top: 100px; + color: white; + font-family: "Libre Baskerville", serif; + text-align: center; +} + +.motivation-img { + border: 5px solid white; + width: 100%; +} diff --git a/Web Development Python Projects/6.4 Motivation Meme Project/solution/solution.html b/Web Development Python Projects/6.4 Motivation Meme Project/solution/solution.html new file mode 100644 index 0000000..f014c86 --- /dev/null +++ b/Web Development Python Projects/6.4 Motivation Meme Project/solution/solution.html @@ -0,0 +1,22 @@ + + + + + + Motivation Meme + + + + + + + + +
+ +

That Special Moment

+

When you find the perfect avocado at the supermarket

+
+ + + \ No newline at end of file diff --git a/Web Development Python Projects/6.4 Motivation Meme Project/style.css b/Web Development Python Projects/6.4 Motivation Meme Project/style.css new file mode 100644 index 0000000..df643ba --- /dev/null +++ b/Web Development Python Projects/6.4 Motivation Meme Project/style.css @@ -0,0 +1,23 @@ +body { + background: black; +} + +h1 { + text-transform: 100%; + color: white; + font-size: 3rem; +} + +.poster { + width: 50%; + margin-left: 25%; + margin-top: 100px; + color: white; + font-family: "Libre Baskerville", serif; + text-align: center; +} + +.motivation-img { + border: 5px, solid white; + width: 100%; +} \ No newline at end of file