<!DOCTYPE html>
<html lang="ko">
<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>StartUp</title>
<!-- Favicon Logo -->
<link rel="icon" href="image/logo-favicon.png">
<!-- -->
<!-- jQuery CDN -->
<script src="/script/jquery-3.4.1.min.js"></script>
<!-- -->
<!-- Slick Slider -->
<link rel="stylesheet" href="script/slick-theme.css">
<link rel="stylesheet" href="script/slick.css">
<script src="/script/slick.min.js"></script>
<!-- -->
<!-- LINK CSS & SCRIPT -->
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/respon.css">
<script src="/script/main.js"></script>
<!-- -->
<!-- Fontawesome lINK -->
<script src="https://kit.fontawesome.com/8e2986d4b4.js" crossorigin="anonymous"></script>
<!-- -->
</head>
<body>
<div class="container">
<!-- Header -->
<header>
<div class="header-inner">
<div class="logo">
<a href="#none"><img src="/image/logo.png" alt=""></a>
</div>
<div class="gnb">
<a href="#none">CEO 인사말</a>
<a href="#none">서비스 특징</a>
<a href="#none">자주 묻는 질문들</a>
<a href="#none">경영비젼</a>
<a href="#none">사용자 리뷰</a>
<a href="#none">앱 사용자 가이드</a>
<a href="#none">최신소식</a>
</div>
</div>
</header>
<!-- welcome -->
<section class="welcome">
<div class="slideshow">
<img src="/image/slide-welcome-01.png" alt="">
<img src="/image/slide-welcome-02.png" alt="">
<img src="/image/slide-welcome-03.png" alt="">
</div>
<div class="wecome-heading">
<span>창의적인 아이디어를 만드는 가장 빠른 방법</span>
<h1>An idea solution of startup for your<em>3가지 타이핑 텍스트 자리</em></h1>
<p>
스타트업 메이트 앱이 여러분의 최상의 스타트업 구축을 위해 창의적인 아이디어를 제공하는 데 최선을 다하겠습니다.
</p>
<div class="welcome-btns">
<a href="#none" class="btn start">CEO 시작하기</a>
<a href="#none" class="btn guide">사용자 가이드</a>
</div>
</div>
<div class="mouse">
<span class="wheel"></span>
</div>
</section>
<!-- ceo-access -->
<section class="ceo-access"></section>
<!-- banner -->
<section class="banner"></section>
<!-- feature -->
<section class="feature"></section>
<!-- vision -->
<section class="vision"></section>
<!-- faq -->
<section class="faq"></section>
<!-- review -->
<section class="review"></section>
<!-- focus -->
<section class="focus"></section>
<!-- guide -->
<section class="guide"></section>
<!-- news -->
<section class="news"></section>
<!-- footer -->
<footer></footer>
</div>
</body>
</html>
/* Font */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;1,400&display=swap');
/* font-family: 'Source Sans Pro', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Gothic+A1:wght@100;200;300;400;500;600&display=swap');
/* font-family: 'Gothic A1', sans-serif; */
/* */
/* Setting CSS */
/* 박스사이징 고정 */
*{
box-sizing: border-box;
}
/* A태그 색상 및 데코 none */
a{
text-decoration: none;
color:#222;
}
/* 버튼,인풋에 기본적으로 들어가있는 아웃라인 제거 */
button, input{
outline:none;
}
/* h태그들 제거, 마진 탑만 0, 라인하이트 설정 */
h1,h2,h3,h4,h5,h6{
margin-top: 0;
font-weight: normal;
line-height: 1.5em;
}
/* Default CSS */
/* 바디에 글꼴설정, a태그와 같은 글씨색상 */
body{
font-family: 'Gothic A1', sans-serif;
font-size: 18px;
line-height: 1.7em;
margin: 0;
background-color: white;
color:#222;
}
/* Header */
header{
}
.header-inner{
width: 1300px;
margin: auto;
overflow: hidden;
padding-top:30px;
padding-bottom:15px;
}
.logo{
float: left;
}
.logo img{
margin-top:-5px;
}
.gnb{
float: right;
}
.gnb a{
margin:10px;
font-size:16px;
}
/* Welome */
.welcome{
height: 90vh;
position: relative;
}
.welcome-heading{
position: absolute;
top: 50%;
transform:translateY(-50%);
left:200px;
border:5px solid red;
width: 750px;
text-align: center;
}
/* ceo-acess */
/* banner */
/* feature */
/* vision */
/* faq */
/* review */
/* focus */
/* guide */
/* news */
/* footer */
안녕하세요, 선생님보고 코드따라썼는데 자꾸 welcome-heading부분이 위로 안올라오고 아래로 자꾸 떨어지는데.. 왜그럴까요?
확인하셨다는 말씀은 해결되셨다는 말인가요?