현업에서 일하고 계시는 PM분의 현업에 대한 생생한 강의를 들을 수 있었다
나보다 10년은 빠르게 일하고 커리어를 쌓고있는 모습이 그저 부럽기만 하다
이후 7조 팀원들과 모여서 한 달짜리 새로운 프로젝트에 대해서 상의하였다
우선적으로 첫 주는 메인페이지를 다 같이 작성하기로 각자 파트를 분배하였다
내가 맡은 파트는 메인페이지 Header, 중요한 부분이기도 하지만 처음 맡아보는 부분이기에 생각보다 기본적인 html,css를 작성하는데 시간이 걸렸다
<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>Document</title>
<link rel="stylesheet" href="./style.css">
<script src="https://kit.fontawesome.com/01f338039f.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<div class="header">
<nav class="header-nav">
<div class="nav-logo">
<img src="./img/resoft logo.png">
</div>
<ul id="nav-ul">
<li a href="#">회사소개</li>
<li a href="#">사업현황</li>
<li a href="#">정보마당</li>
<li a href="#" class="ham">
<i class="fa-solid fa-bars"></i>
</li>
</ul>
</nav>
</div>
<div class="text-box">
<div class="hd-1">
<p class="main-text">Evolution<br />With New Software</p>
<p class="sub-text">
<span>Mobile APP(Android/iOS) Development, </span>
<span>AI Bigdata Analysis, MetaVerse, </span>
<span>Responsive WEBsite, Brand Design Launch, </span>
<span>ICT Consulting</span>
</p>
<img src="./img/Icon ionic-ios-arrow-round-back.svg" class="left">
<img src="./img/play.svg" class="center">
<img src="./img/Icon ionic-ios-arrow-round-back-1.svg" class="right">
</div>
</div>
</div>
</header>
</body>
</html>
@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&family=Noto+Sans+KR&display=swap');
* {
margin: 0;
padding: 0;
font-family: 'Noto Sans', sans-serif;
box-sizing: border-box;
vertical-align: baseline;
}
body {
max-width: 1920px;
}
/********************************* 헤더부분 *************************************/
/* 헤더부분 */
header {
width: 100%;
height: 900px;
background: url("./img/Head-back-img.png") no-repeat center center/cover, rgba(0, 0, 0, 0.5);
background-blend-mode: multiply;
position: fixed;
z-index: 1000;
}
.header-nav {
height: 80px;
border: 1px solid #ffff;
text-align: center;
display: flex;
flex-direction: row;
justify-content: space-around;
}
.nav-logo {
top: 25px;
left: 360px;
width: 133px;
height: 30px;
padding-top: 20px;
padding-left: 45px;
}
.nav-logo img {
width: 133px;
height: 30px;
}
.header-nav li {
display: inline-block;
color: white;
font-size: 20px;
font-weight: bold;
margin-left: 80px;
}
#nav-ul {
width: calc(100% / 4);
margin-right: -20px;
margin-left: 80px;
padding-top: 20px;
}
.header-nav li {
margin-left: 50px;
letter-spacing: -1px;
}
.header-nav li i{
font-size: 32px;
}
.text-box {
position: relative;
height: 100%;
}
.hd-1 {
position: absolute;
top: 462px;
left: 240px;
}
.hd-1 p:first-child {
font-size: 40px;
font-weight: bolder;
line-height: 120%;
}
.hd-1 p:last-child {
margin-top: 30px;
word-break: normal;
width: 60%;
font-size: 18px;
}
.hd-1 img {
margin-top: 115px;
opacity: 0.5;
}
.hd-1 img.left{
width: 60px;
height: 40px;
}
.hd-1 img.center{
width: 15px;
height: 21px;
margin-bottom: 10px;
margin-left: 15px;
margin-right: 15px;
}
.hd-1 img.right{
width: 60px;
height: 40px;
}
