From 6a39e33e7f14a7e0b03638069f693fccd99be607 Mon Sep 17 00:00:00 2001 From: steven-tan-telus Date: Fri, 24 Jan 2025 10:53:39 -0500 Subject: [PATCH] Implemented the first html assignment --- .gitignore | 4 -- first_assigment/css/index.css | 68 ++++++++++++++++++++ first_assigment/index.html | 115 ++++++++++++++++++++++++++++++++++ 3 files changed, 183 insertions(+), 4 deletions(-) create mode 100644 first_assigment/css/index.css create mode 100644 first_assigment/index.html diff --git a/.gitignore b/.gitignore index b7730de..8e824ed 100644 --- a/.gitignore +++ b/.gitignore @@ -47,7 +47,3 @@ Thumbs.db # React Native .expo/ .expo-shared/ - -# HTML/CSS specific -*.html -*.css \ No newline at end of file diff --git a/first_assigment/css/index.css b/first_assigment/css/index.css new file mode 100644 index 0000000..e86ba0f --- /dev/null +++ b/first_assigment/css/index.css @@ -0,0 +1,68 @@ + body { + font-family: Arial, sans-serif; + margin: 0; + padding: 0; +} +header, nav, section, footer { + padding: 20px; + margin: 10px; +} +header { + background-color: #f8f9fa; +} +nav ul { + list-style-type: none; + padding: 0; +} +nav ul li { + display: inline; + margin-right: 10px; +} +.projects { + display: flex; + flex-wrap: wrap; +} +.project-card { + border: 1px solid #ddd; + padding: 10px; + margin: 10px; + width: 30%; +} + +table { + width: 100%; + border-collapse: collapse; + margin-top: 20px; +} + +table, th, td { + border: 1px solid #ddd; +} + +th, td { + padding: 12px; + text-align: left; +} + +th { + background-color: #f2f2f2; +} + +tr:nth-child(even) { + background-color: #f9f9f9; +} + + +form { + display: flex; + flex-direction: column; +} +form input, form textarea { + margin-bottom: 10px; + padding: 10px; + width: 100%; +} + +footer{ + text-align: center; +} \ No newline at end of file diff --git a/first_assigment/index.html b/first_assigment/index.html new file mode 100644 index 0000000..81c72fb --- /dev/null +++ b/first_assigment/index.html @@ -0,0 +1,115 @@ + + + + + + Personal Portfolio - Steven Tan + + + + +
+

Steven M. Tan

+ +
+ + +
+

About Me

+

+ I am passionate about learning to code and enjoy reading non-fiction books. I am part of a family of four, with two wonderful children. In our free time, we love to watch Disney movies together as a recreational activity. +

+ Steven Tan's Image + +
+

Personal Information

+ + + + + + + + + + + + + + + + + + + + + + + + + +
DetailInformation
NameSteven M. Tan
Age30
OccupationSoftware Developer
HobbiesCoding, Reading Non-Fiction Books
Favorite Programming LanguagesJavaScript, Python, HTML, CSS
+
+
+ + +
+

Skills

+ +
+ + +
+

Projects

+
+
+

Project Sample 1

+

coming soon..

+ View More +
+
+

Project Sample 2

+

coming soon..

+ View More +
+
+

Project Sample 3

+

coming soon..

+ View More +
+
+
+ + +
+

Contact

+
+ + + + + + + +
+
+ + + + + \ No newline at end of file