diff --git a/202009181020016953_t.jpg b/202009181020016953_t.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce8316b026a91f38dd91728da952e7b47c17c74e Binary files /dev/null and b/202009181020016953_t.jpg differ diff --git a/public/index.html b/public/index.html index 6652c7dd60ad34f6d80148f3c8e6876702d19854..268a737818e4d1e542eae112569f15b52da5f02d 100644 --- a/public/index.html +++ b/public/index.html @@ -8,16 +8,36 @@ </head> <body> <div class="navbar"> - <a href="https://pages.gitlab.io/plain-html/">Plain HTML Example</a> - <a href="https://gitlab.com/pages/plain-html/">Repository</a> - <a href="https://gitlab.com/pages/">Other Examples</a> + <a href="https://pages.gitlab.io/plain-html/">friend's page</a> </div> - <h1>Hello World!</h1> + <h1>soccer</h1> + <h2>soccer</h2> + <h3>soccer</h3> + <h4>soccer</h4> + <h5>soccer</h5> + <h6>soccer</h6> - <p> - This is a simple plain-HTML website on GitLab Pages, without any fancy static site generator. + <img src = "../202009181020016953_t.jpg" alt="arror"> + <br> + + + <p id = "c"> + 현재 대한민국을 대표하는 축구 선수들 </p> + + <ul class="a"> + <li>손흥민</li> + <li>이강인</li> + <li>김민재</li> + </ul> + + <ol class="b"> + <li>황인범</li> + <li>정우영</li> + <li>이승우</li> + </ol> + </body> </html> diff --git a/public/style.css b/public/style.css index 3eae4084bda0c2270306b14ac8c1ca732415edc3..da9a3742102b6340f87bcde254ead30314f93990 100644 --- a/public/style.css +++ b/public/style.css @@ -22,3 +22,26 @@ body { color: #ffffff; } +img{ + min-width: 200px; + min-height: 200px; + max-width: 600px; + max-height: 500px; + display: block; + margin: auto; +} + +.a{ + list-style-type: circle; +} + +.b{ + list-style-type: upper-roman; +} + +#c{ + background-color: antiquewhite; + font-family: monospace; + font-size: 25px; + color:cornflowerblue; +} \ No newline at end of file