From 7891050731ffd225403fdec6dfc24e64ad70b03f Mon Sep 17 00:00:00 2001 From: cesartalves Date: Mon, 20 Jan 2025 15:27:02 -0300 Subject: [PATCH] Some changes! - Add Spotify (currently listening) - Put styles on main.css - Add new video Link TODO: - link Youtube Channels more appropriately (automatically pull changes) - Center Spotify Container properly --- index.html | 96 ++++++++++++++---------------------------------------- main.css | 69 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 94 insertions(+), 71 deletions(-) create mode 100644 main.css diff --git a/index.html b/index.html index 9fc3ce7..9228151 100644 --- a/index.html +++ b/index.html @@ -5,92 +5,29 @@ cesartalvez! Software Engineering, Languages and Everything in between! - + +
-
- Hi! This is a sample Landing Page. -
+
This is a sample Landing Page
Thanks for vising! ☺️


I use this Page to Teach people I am Mentoring! + + Book a Chat TODAY! 🫡 +
-

Need help with Programming? See the links below! Click on the Link below! 👇 - +

PROGRAMMING VIDEOS!👇

@@ -106,9 +46,13 @@
+
+ +

Find me on Social Media! 🧑🏻‍💻

-
+
+
@@ -128,6 +72,16 @@
+
+
+
Currently Listening to 🦻
+
+ + +
+
+ + diff --git a/main.css b/main.css new file mode 100644 index 0000000..75fb364 --- /dev/null +++ b/main.css @@ -0,0 +1,69 @@ + + body { + margin: 0px; + padding: 0px; + } + + .intro-thanks { + margin: 0px 10px 0px 10px; + border-radius: 10px; + background-color: rgb(213, 240, 241); + padding: 20px; + } + + .thanks { + font-weight: bold; + } + + .center-content { + display: flex; + flex-direction: row; + align-items: center; + justify-content: center; + } + + .video { + font-size: 30px; + } + + .video-container { + background-color: rgb(213, 240, 241); + margin: 30px 0px 30px 0px; + padding: 20px; + } + + #nav { + background-color: black; + height: 20px; + margin-bottom: 20px; + padding: 10px; + } + + #nav a { + color: white; + text-decoration: none; + + } + + #external { + margin: 20px 0px 30px 0px; + padding: 30px 0px 30px 0px; + border-radius: 5px; + background-color: beige; + } + + #external > p { + padding-bottom: 20px; + font-weight: bolder; + } + + #listening iframe { + + } + + #footer { + margin-bottom: 20px; + padding: 20px; + } + + \ No newline at end of file