Resoft홈페이지 W1-4/4

MINJOO·2022년 7월 22일
0

오늘의 코드

일단 오늘 윗쪽 제목 베너쪽에 문제점을 해결했다!!! 오예
현재까지 제목의 폰트와 색이 변하지는 않았지만 수정가능할듯 보인다.

html코드

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Resoft</title>
    <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="style.css">
</head>
<body>
<header>
    <div id="header">
        <span>사업현황</span>
    </div>       
</header>

    <div class="project_t">
        <p class="bold">에코스</p>
        <p class="medium">ECO-Clean Earth</p>
        <img src="/img/Ecoce_back.png" alt="" width="679px" height="592px" X="240px" Y="618px">
        <img src="/img/Ecoce_front.png" alt="" width="475px" height="687px" X="469px" Y="676px">
    </div>
    <div class="project_script">
        <p class="bold">국내 최초 <br>
        <br>탄소중립 실천인증 플랫폼</p>
    </div>
    <img src="/img/Ecoce.png" alt="" width="452px" height="125px" X="1228px" Y="846px">
    <div class="text">
        <h3>ECO-Clean Earth</h3> 
    </div>
</body>
</html>


부모태크로 해서 이미지하나는 백그라운드에 
자식태클고 해서 모바일이미지는 div태크로 구현

css코드


p {
    font-family: 'Noto Sans KR', sans-serif;
}

.medium {
    font-weight: 500;
}

.bold {
    font-weight: 700;
    font-size: 40px;
}

#header{
    width: 1920px;
    height: 300px;
    top:80px;
    left:0px;
    background: rgba(30, 30, 30, 1) 0% 0% no-repeat padding-box;
    /* opacity: 0.3; */
    background-image: url(./img/Head.png);
    display:flex;
    flex-wrap: nowrap;
    justify-content:center;
    align-items: center;
}

.span {
    color: #ffffff;
    font-size: 100px;
    width: 148px;
    height: 58px;
    left: 886px;
    right: 201px;
    font: normal bold 40px/58px Noto Sans KR;
    letter-spacing: 0px;
    opacity: 1;
}

최대한 모든 코드들을 간단하게 작성해야된다는걸 꺠닳았다. 여러코드를 동시다발적으로 쓰다보면 비슷한 기질의 코드들끼리 부딫혀서 오류가 나기에 구현되지 않는게 빈번한거 같다. 또 저녁에 계속 문제점을 해결해 봐야겠다.

결과물 사진

느낀점

그래도 팀원들과 함께 해결해 나가는 재미를 조금 느끼기 시작한거 같다. 그들의 말을 조금 이해하는 내 자신도 기특한거 같다.. 좀 더 복습하고 공부해야겠다.

profile
코딩 신생아

0개의 댓글