• Daum
  • |
  • 카페
  • |
  • 테이블
  • |
  • 메일
  • |
  • 카페앱 설치
 
카페정보
HTML&CSS TAG
 
 
 
카페 게시글
◈─---… HTML 영상방 <title>HTML tag A</title>
gyun님 추천 0 조회 30 23.02.21 09:40 댓글 9
게시글 본문내용
 
다음검색
댓글
  • 작성자 23.02.21 09:46

    첫댓글 https://www.w3schools.com/html/tryit.asp?filename=tryhtml_default_default

  • 작성자 23.02.21 09:55

    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');

    *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    }
    body{
    height: 100vh;
    width: 100vw;
    }

  • 작성자 23.02.21 09:56

    nav{
    background-color: #c23616;
    height: 80px;
    width: 100vw;
    user-select: none;
    }

    section{
    width: 100vw;
    height: calc(100vh - 80px);
    background: linear-gradient(rgba(53, 59, 72,0.3),rgba(53, 59, 72,0.3)), url('../images/banner.jpg');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color:white;
    }
    section h1{
    color:#fbc531;
    font-size: 30px;
    font-weight: 500;
    }

  • 작성자 23.02.21 09:56

    section p{
    font-size: 20px;
    text-align: center;
    padding: 10px 30px;
    }

    .logo{
    color:white;
    font-size: 25px;
    line-height: 80px;
    padding: 0 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    }

  • 작성자 23.02.21 09:57

    nav ul{
    float: right;
    margin-right: 30px;
    }

    nav ul li{
    list-style: none;
    display: inline-block;
    line-height: 80px;
    min-width: 100px;
    text-align: center;
    border-top-right-radius:10px ;
    border-top-left-radius:10px ;
    }
    nav ul li:hover{
    background: #353b48;
    }

    nav ul li a{
    text-decoration: none;
    color:white;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;

  • 작성자 23.02.21 09:57

    }

    #check{
    display: none;
    }
    .checkbtn{
    color:white;
    font-size: 30px;
    float:right;
    line-height: 80px;
    cursor: pointer;
    display: none;
    margin-right: 10px;
    }

    li.active a{
    color:rgba(123, 237, 159,1.0);
    }

    @media (max-width:928px){
    .checkbtn{
    display: block;
    }
    ul{
    position: fixed;
    top:80px;
    left: 100%;
    width: 100%;
    height: 100vh;
    background-color: #333;
    transition: 0.3s;
    }

  • 작성자 23.02.21 09:58

    nav ul li{
    display: block;
    border-top-right-radius:0px ;
    border-top-left-radius:0px;
    line-height: 50px;
    }

    #check:checked ~ ul{
    left: 0;
    }
    section h1{
    font-size: 20px;
    }
    section p{
    font-size: 15px;
    }
    }

  • 작성자 23.02.21 10:01

    튜터 조 소프트웨어 솔루션 & https://www.tutorjoes.in/public/bootcamp/15_pure_css_res_navbar/

  • 작성자 23.02.21 10:04

    원시 파일을 다운로드하려면 여기를 클릭하십시오.
    https://github.com/TutorJoes-Stanley/web_development_bootcamp

최신목록