From d99656856beda3b836b7e3004b44a1d5c1ecf79d Mon Sep 17 00:00:00 2001 From: Min-Thway-Htut Date: Sat, 7 Sep 2024 01:05:33 +0200 Subject: [PATCH] Adding article section --- index.html | 28 +++++++++++++++++++++++-- project.html | 2 +- styles.css | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 86 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 564f70d..d6337fa 100644 --- a/index.html +++ b/index.html @@ -162,7 +162,31 @@

My Projects

- + +

Articles

+
Apart from coding and developing projects, I am also interested in writing IT-related articles. +
+
+
+ The Role of Digital Technology +
The Role of Digital Technology in Education
+
The article is about the importance of digital technology in education, including how technology differentiates the way we are learning today from what we did + a few years ago and elaboration on possible solutions to promote digital literacy in undeveloped regions.
+
+
Read More
+
+
+ NFC +
+
Analyzing NFC Technology with Business Model Canvas
+
NFC technology has a major impact on our daily life, offering seamless + opportunities such as mobile payment, product authentication, and other countless features. + In this case, the Business Model Canvas is used as a strategic management tool to provide + valuable insights as well as a clear picture of current customer base, driving a profit, and + delivering a unique value proposition regarding NFC technology and NFC chips.
+
Read More
+
+

Contact Me

@@ -198,7 +222,7 @@

Contact Information

@minthwayhtut 2024 | Developed by Min Thway Htut

-

Last updated on 06.09.2024

+

Last updated on 07.09.2024

diff --git a/project.html b/project.html index b7d0090..7fef96c 100644 --- a/project.html +++ b/project.html @@ -114,7 +114,7 @@

My Projects

@minthwayhtut 2024 | Developed by Min Thway Htut

-

Last updated on 06.09.2024

+

Last updated on 07.09.2024

diff --git a/styles.css b/styles.css index f3b56e9..a6e9204 100644 --- a/styles.css +++ b/styles.css @@ -296,6 +296,65 @@ nav li:first-child{ margin-right: auto; } +.article-section-description{ + color: #f1e6c5; + margin-left: 25px; + margin-right: 25px; + margin-bottom: 10px; + font-size: 20px; +} + +.article-section{ + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 20px; + padding: 20px; + max-width: 1200px; + margin: 0 auto; +} + +.article-title{ + font-size: 30px; + color: #1b3b35; +} +.article-description{ + font-size: 15px; + color: #1b3b35; + margin-top: 8px; + margin-bottom: 8px; +} +.read-more{ + font-size: 13px; + color: #1b3b35; + margin-top: 5px; + text-decoration: underline; +} +.read-more:hover{ + color: #f1e6c5; + text-decoration: underline; +} +.article{ + border-radius: 5px; + padding: 15px; + background-color: #a89e75; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) ; + transition: tranform 0.3s ease, box-shadow 0.3s ease; +} + + +.article img { + width: 100%; + height: 350px; + display: block; + margin-bottom: 15px; + border-radius: 5px; +} + +.article h2 { + font-size: 1.2em; + margin-bottom: 10px; + color: #333; +} .sidebar{ position:fixed; top: 0;