- 싸이월드 실습 1 -
<!DOCTYPE html>
<html lang="ko">
<head>
<title>프망생님의 미니홈피 :: 사이좋은 사람들, 싸이월드</title>
<link href="./styles/index.css" rel="stylesheet">
<script src="https://kit.fontawesome.com/---------.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="background">
<div class="outerbox">
<div class="wrapper">
<div class="wrapper_left">
<div class="wrapper_left_header">
<div class="today">
<span>TODAY </span>
<span>0</span>
<span> | TOTAL </span>
<span>12345</span>
</div>
</div>
<div class="wrapper_left_body">
<div class="left_body_header">
<div class="left_body_header_pic">
</div>
<div class="left_body_header_line">
</div>
</div>
<div class="left_body_profile">
<div class="profile">
<div class="profile_user">
<span><i class="fa-regular fa-face-smile"></i></span>
<span class="userInfo"> 이름</span>
</div>
<div class="profile_user">
<span><i class="fa-solid fa-phone"></i></span>
<span class="userInfo"> 전화번호</span>
</div>
<div class="profile_user">
<span><i class="fa-solid fa-envelope"></i></span>
<span class="userInfo"> 이메일</span>
</div>
<div class="profile_user">
<span><i class="fa-solid fa-star"></i></span>
<span class="userInfo"> SNS</span>
</div>
</div>
</div>
<div class="left_body_footer">
<div class="my_feel">
<span class="user_feel">오늘의 기분</span>
<select class="user_feel_select">
<option disabled="true" selected="true">오늘의 기분을 선택해주세요</option>
<option>기쁨 😊</option>
<option>슬픔 😢</option>
<option>피곤 🥱</option>
<option>분오 😡</option>
</select>
</div>
</div>
</div>
</div>
<div class="wrapper_right">
</div>
</div>
</div>
</div>
</body>
</html>
* {
box-sizing: border-box;
margin: 0px;
}
.background {
width: 1024px;
height: 600px;
background-image: url("../images/background.png");
padding: 20px 0px 0px 20px;
}
.outerbox {
width: 808px;
height: 544px;
background-image: url("../images/outerbox.png");
}
.wrapper {
display: flex;
flex-direction: row;
padding: 32px 32px;
}
.wrapper_left {
width: 208px;
height: 472px;
display: flex;
flex-direction: column;
}
.wrapper_left_header {
width: 100%;
height: 30px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.today {
font-size: 9px;
color: #55B2D4;
}
.wrapper_left_body {
width: 100%;
height: 100%;
border: 1px solid black;
border-radius: 10px;
background-color: white;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px 30px;
}
.left_body_header {
width: 100%;
display: flex;
flex-direction: column;
}
.left_body_header_pic {
width: 148px;
height: 133px;
background-color: gray;
}
.left_body_header_line{
border-top: 1px dotted black;
margin: 12px 0px;
}
.left_body_profile {
width: 100%;
display: flex;
flex-direction: column;
}
.profile {
display: flex;
flex-direction: column;
align-items: start;
font-size: 9px;
}
.profile_user {
padding-top: 8px;
}
.userInfo {
color: #999999;
}
.left_body_footer {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: start;
justify-content: end;
}
.my_feel {
display: flex;
flex-direction: column;
}
.user_feel {
font-size: 9px;
padding-bottom: 9px;
}
.user_feel_select {
width: 140px;
height: 18px;
font-size: 9px;
}
.wrapper_right {
width: 524px;
height: 472px;
}
03일차 기초 실습
CSS
* {
box-sizing: border-box;
margin: 0px;
}
CSS 전체에 border-box를 선언하여서 작업할때 용이하게 하자.
margin: 0px;을 선언한 이유 : 브라우저의 여백을 없애기 위해 선언
html
<script src="https://kit.fontawesome.com/---------.js" crossorigin="anonymous"></script>
-> 이모티콘을 위한 것 https://fontawesome.com/의 이모티콘을 사용하기 위해 선언, ---------에 들어가는 것은 개인마다 다르니 위 사이트에서 복사해서 붙여넣기
일단 기초적인 사이월드 틀을 만들어본 코드.
아무래도 코딩 자체를 오랜만에 하고 아직 html과 CSS 쪽은 익숙하지 않아서 인지 html에서의 class 명이 뒤죽박죽으로 지칭된 것 같다.
일관성 있게 작성해야 가독성이 좋은데.... 아직은 가독성은 좋지 않은 듯.....
'프론트엔드 공부 > 싸이월드 실습' 카테고리의 다른 글
07일차 프론트엔드 공부 - 싸이월드 실습 5 (2) | 2024.09.04 |
---|---|
06일차 프론트엔드 공부 - 싸이월드 실습 4 (7) | 2024.09.04 |
05일차 프론트엔드 공부 - 싸이월드 실습 3 (1) | 2024.09.04 |
05일차 프론트엔드 공부 - 싸이월드 실습 2 (0) | 2024.09.04 |