From 74f2db1e3e92445d31c88dd0c9033795cb41b8dc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EA=B3=BD=EB=8F=99=EC=A4=80?= <k3357943@ajou.ac.kr>
Date: Wed, 22 Mar 2023 18:52:38 +0900
Subject: [PATCH] coloring the specific paragraph

---
 public/index.html |  6 +++---
 public/style.css  | 14 ++++++++++++++
 2 files changed, 17 insertions(+), 3 deletions(-)

diff --git a/public/index.html b/public/index.html
index 2558cb3..e170212 100644
--- a/public/index.html
+++ b/public/index.html
@@ -36,9 +36,9 @@
     </ol>
 
     <p>here's the my friend's link</p>
-    <a href="http://unidev.ajousw.kr/jiheon-choi/">Choi Ji Heon</a>
-    <a href="http://sunje105.ajousw.kr/sunje_homepage/">Lee Sun Je</a>
-    <a href="http://minsol_choo.ajousw.kr/practical_coding_1_html/">Choo Min Sol</a>
+    <p class="link1"><a href="http://unidev.ajousw.kr/jiheon-choi/">Choi Ji Heon</a></p>
+    <p class="link2"><a href="http://sunje105.ajousw.kr/sunje_homepage/">Lee Sun Je</a></p>
+    <p class="link3"><a href="http://minsol_choo.ajousw.kr/practical_coding_1_html/">Choo Min Sol</a></p>
 
     <h6>The End</h6>
   </body>
diff --git a/public/style.css b/public/style.css
index 3eae408..d57dbda 100644
--- a/public/style.css
+++ b/public/style.css
@@ -22,3 +22,17 @@ body {
   color: #ffffff;
 }
 
+p.link1{
+  font-size: medium;
+  background-color: aqua;
+}
+
+p.link2{
+  font-size: medium;
+  background-color: aquamarine;
+}
+
+p.link3{
+  font-size: medium;
+  background-color: antiquewhite;
+}
\ No newline at end of file
-- 
GitLab