Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
82 changes: 82 additions & 0 deletions home.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
<!DOCTYPE html>
<html lang="kor">

<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>My diary</title>
<link rel="stylesheet" href="./style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Nanum+Brush+Script&display=swap"
rel="stylesheet">
</head>

<body>
<div id="main-container">
<header></header>
<main>
<div id="top">
SUNG HO CHOI
</div>
<div id="container">
<section id="Profile">
[Me Myself & I]<br> <br>
Name: Sung Ho Choi <br>
Postion: Back-end <br>
Major: Business<br>
Birthday: 1997.03.27<br>
</section>
<section id="MBTI">
<div class="bg"></div>
[MBTI] <br> <br>
ENTJ <br>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1조 유일한 E!

통솔자 <br>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

엠비티아이 잘 어울려용

<p id="quote">Your time is limited,<br>
so don’t waste it living someone else’s life.<br></p>

</section>
<section id="food">
[Favorite Food] <br> <br>
고기면 다 좋아
</section>
<section id="movie">
<div class="bg"></div>
[MOVIE] <br> <br>
Joker

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why So Serious!!!

</section>
<section id="music">
[MUSIC] <br><br>
Joe Hisaishi Summer
</section>
<section id="pet">
<div class="bg"></div>
호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두 호두
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

중간고사 화이팅입니다.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

호두 귀엽더라!

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

호두호두호두호두~

호두 호두
</section>
<!-- section*6 => 6개 만드는 단축키-->
</div>
<aside>
<div id="team">
1. 승호의 최애곡은 merry go round인데 한우석은 피아노로 칠 수 있다 <br>
2. 이상연은 오늘 1교시를 지각했다 <br>
3. 오은택의 송곳니가 깨진걸 알고 치과 예약을 했다.</div>
<div id="hi">행복합시다~</div>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

승호님도요~

</aside>
</main> <!-- 주요 내용-->
<footer>
승호두|승호두|승호두|승호두|승호두|승호두|승호두|승호두|승호두|승호두|승호두|승호두
</footer>
</div>

<div id="alert">
PC로 접속하여라~
</div>
</body>

</html>
193 changes: 193 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,193 @@
* {
box-sizing: border-box;
font-family: 'NanumBrushScript', sans-serif;
color: lightslategrey
}

header {
height: 40px;
background-color: #999999;
}

body {
background-color: #999999;
}

main {
height: 600px;
width: 750px;
margin: 0 auto;
/*가운데 정렬*/
background-color: #999999;
}

footer {
height: 200px;
background-color: #999999;
margin-bottom: 25px;

box-shadow: 5px 5px 5px 5px;
}

#top {
height: 30px;
background-color: #333333;
margin-bottom;
25px;
font-size: 18px;
text-align: center;
line-height: 35px;
font-family: 'Black Han Sans
box-shadow: 5px 5px 5px 5px;
}

#container {
height: 410px;
padding: 10px;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-content: space-around;
background-color: #999999;
}

aside {
height: 80px;
background-color: #999999;
margin-bottom: 60px;
margin: 0 15px 60px 15px;
}

section {
padding: 30px;
border-radius: 3px;
width: 30%;
height: 45%;
background-color: #333333;
text-align: center;
position: relative;
box-shadow: 5px 5px 5px 5px;
}

#MBTI {
background-image: url("./image/stevegrey.webp");
background-size: cover;
color: white;
height: 45%;
width: 30%;
padding: 10px;
position: relative;
}

#MBTI:hover {
transform: scale(1.1);
transition: all 0.2s linear;
}

#quote {
color: white;
}

#quote {
font-family: 'Times New Roman', Times, serif;
}

#movie {
background-image: url("./image/joker2.jpg");
background-size: cover;
color: white;
height: 45%;
width: 30%;
position: relative;
}

#movie:hover {
transform: scale(1.1);
transition: all 0.2s linear;
}

#pet {
background-image: url("./image/hodoo.jpeg");
background-size: cover;
color: white;
height: 45%;
width: 30%;
position: relative;
background-position: -20px;
}

#pet:hover {
transform: scale(1.1);
transition: all 0.2s linear;
}

#food:hover {
transform: scale(1.1);
transition: all 0.2s linear;
}

#music:hover {
transform: scale(1.1);
transition: all 0.2s linear;
}

#Profile:hover {
transform: scale(1.1);
transition: all 0.2s linear;
}

.bg {
background-color: rgba(0, 0, 0, 0.5);
width: 100%;
height: 100%;
border-radius: 5px;
position: absolute;
top: 0px;
left: 0px;
}


#team {
padding: 10px;
width: 470px;
height: 100%;
background-color: #333333;
border-radius: 5px;
font-size: 15px;
float: left;
}

#hi {
width: 230px;
height: 100%;
background-color: #333333;
border-radius: 5px;
text-align: center;
padding: 30px;
float: right;
}

footer {

height: 30px;
background-color: #333333;
text-align: center;
padding: 10px;
font-family: 'NanumBrushScript';
}

#alert {
display: none;
text-align: center;
padding-top: 300px;
}

@media(max-width:800px) {
#main-container {
display: none;
}

#alert {
display: block;
}
}