From 7e1e5714573c19543187b8cec183515a97d79c36 Mon Sep 17 00:00:00 2001 From: TommyOh0428 Date: Tue, 21 Nov 2023 13:51:30 -0800 Subject: [PATCH] create about me section --- .DS_Store | Bin 6148 -> 6148 bytes index.html | 54 ++++++++++++++++++++++++++++++++++++++++++++--- style.css | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++-- 3 files changed, 109 insertions(+), 5 deletions(-) diff --git a/.DS_Store b/.DS_Store index 127f64bc3b0c7776f85a5b20131d74c3a48d39e3..ecc0012415ef7683764b1b5c10abd0b34113a081 100644 GIT binary patch delta 19 acmZoMXffC@hmp-#N5RC>a`Pg_BryOyq6M!2 delta 19 acmZoMXffC@hmp-hN5RC>V)G)#BryOyrvHello, I'm Tommy Oh
who is pursuing the program
in Simo -
+
- +
-

About Me

+

About Me

+

I am currently in my second year at Simon Fraser University, where I'm deeply engaged in studying Software Systems. + As the Design Lead for the SFU Open Source Development Club, I've had the opportunity to contribute to several projects with practical, real-world applications. + My journey through university has enriched my knowledge in various programming languages, including C++ and JavaScript, alongside a range of libraries. + These experiences have been incredibly meaningful, significantly enhancing my understanding of programming.

+
+

I am passionately committed to continuous learning and skill development in the ever-evolving field of technology. + I welcome any opportunity to connect and engage in meaningful conversations about technology and innovation. + Please feel free to reach out to me; I am always eager to share ideas and learn from others."

+ +
+ + + +
+
+
    +
  • UI/UX
    Designing the basic Web/App interfaces
  • +
  • Web Development
    Web appplication Development using React
  • +
  • App Development
    Chrome Extension using HTML, CSS and JavaScript
  • +
+
+
+
    +
  • 2023 Nov - present
    Design Lead in SFU OS Development club
  • +
  • 2023 Jan - present
    Software Developer in SFU OS Development club
  • +
+
+
+
    +
  • 2023 Sept - present
    Pursue bacheler of science in SFU
  • +
+
+ \ No newline at end of file diff --git a/style.css b/style.css index b2a2181..8f1800f 100644 --- a/style.css +++ b/style.css @@ -90,10 +90,66 @@ nav ul li a:hover::after { } .about-col-1 { - flex-basis: 100%; + flex-basis: 35%; } .about-col-1 img { - width: 100%; border-radius: 15px; + width: 100%; +} + +.about-col-2 { + flex-basis: 60%; +} + +.sub-title { + font-size: 40px; + font-weight: 600; + color: #fff; +} + +.tab-titles { + display: flex; + margin: 20px 0 40px; +} + +.tab-links { + margin-right: 50px; + font-size: 18px; + font-weight: 500; + cursor: pointer; + position: relative; +} + +.tab-links::after { + content: ''; + width: 0; + height: 3px; + background: #ff004f; + position: absolute; + left: 0; + bottom: -8px; + transition: 0.5s; +} + +.tab-links.active-link::after { + width: 50%; +} + +.tab-contents ul li { + list-style: none; + margin: 10px 0; +} + +.tab-contents ul li span { + color: #b54769; + font-size: 14px; +} + +.tab-contents { + display: none; +} + +.tab-contents.active-tab { + display: block; } \ No newline at end of file