whatisthis?

Project. ๋ฐ˜์‘ํ˜• ํŽ˜์ด์ง€ - (7) Footer Section ๋ณธ๋ฌธ

PROJECT/WEB

Project. ๋ฐ˜์‘ํ˜• ํŽ˜์ด์ง€ - (7) Footer Section

thisisyjin 2022. 3. 2. 21:14

(7) Footer Section

 

๐Ÿ“Œ HTML + CSS ์ž‘์„ฑ

 

- html ๋งˆํฌ์—… ๊ตฌ์„ฑ

 

๋งค์šฐ ๊ฐ„๋‹จ!

col-12 ์งœ๋ฆฌ ์„ธ๊ฐœ๋งŒ๋“ค๊ธฐ.

 

 

index.html

<footer class="footer">
  <div class="container">
    <div class="row">
      <div class="col-12">
        <ul class="footer-links">
          <li><a href="#" class="footer-link">Terms</a></li>
          <li><a href="#" class="footer-link">Privacy</a></li>
          <li><a href="#" class="footer-link">License</a></li>
        </ul>
      </div>
    </div>
  </div>
</footer>

 

 

style.css

/* Footer Page */
.footer {
  padding: 24px 0;
}

.footer-link {
  margin-bottom: 8px;
}

.footer-link:last-child {
  margin-bottom: 0;
}

.footer-link a {
  font-size: 14px;
  line-height: 1.71428571;
  letter-spacing: -0.01em;
  color: #807f81;
}

 

+)  media query  (Desktop)

/* footer */

  .footer-links {
    display: flex;
    align-items: center;
  }

  .footer-link {
    margin-bottom: 0;
    margin-right: 16px;
  }

desktop์ผ๋•Œ
mobile์ผ๋•Œ

 

 

 

 

 

 

 

๋“œ๋””์–ด ๋ชจ๋“  ํŽ˜์ด์ง€ ์™„์„ฑ.

๋‹ค์Œ ํฌ์ŠคํŒ…์—์„œ ์ฝ”๋“œ ๋ฆฌ๋ทฐ + ๋ณต์Šต ์ง„ํ–‰ํ•จ.

์ˆ˜๊ณ ํ–ˆ์–ด์šฉ ๐Ÿ‘

 

 

 


๐Ÿ”ป Design File

 

Figma

Created with Figma

www.figma.com

 

๐Ÿ”ปReference Lecture

 

๊น€๋ฒ„๊ทธ์˜ HTML&CSS๋Š” ์žฌ๋ฐŒ๋‹ค - ๊ตฌ๋ฆ„EDU

HTML&CSS๋ฅผ ํ•œ๋ฒˆ์—! ํƒ„ํƒ„ํ•œ ๊ฐœ๋…์ดํ•ด๋ถ€ํ„ฐ ์‹ค์Šต๊นŒ์ง€ ํ•œ ๊ฐ•์˜๋กœ ๋๋‚ด๊ธฐ, ์‹ค๋ฌด ๊ฐ€๋Šฅํ•œ ์‹ค๋ ฅ์œผ๋กœ ๐Ÿ˜Ž

edu.goorm.io