diff --git a/public/index.html b/public/index.html index 97f2c2502d3b199bd43989a266d4f49dffd8b4f8..3398f3026c032a844a87fd198b4ead466e1f7e38 100644 --- a/public/index.html +++ b/public/index.html @@ -14,7 +14,7 @@ </div> <div class="centerImage"> - <p><img src = "image/thankyou_kong.jpg", alt="GamSaKong"></p> + <img src = "image/thankyou_kong.jpg", alt="GamSaKong"> </div> <h1>Kwak Dong Jun</h1> diff --git a/public/style.css b/public/style.css index d0935f3d62375d5d70cc09710b116b7ff02c2d46..40f9ee5239ef57fc74e32c83e85179982cb7dc4f 100644 --- a/public/style.css +++ b/public/style.css @@ -23,13 +23,16 @@ body { } .centerImage img{ - text-align: center; - width: 360px; - height: 360px; + max-width: 360px; + max-height: 360px; + min-width: 200px; + min-height: 200px; + display: block; + margin: auto; } .linkColor{ - font-size: medium; + font-size: 20px; font-style: italic; background-color: aqua; } \ No newline at end of file