Skip to content

Commit

Permalink
Fix merge conflict in login.css
Browse files Browse the repository at this point in the history
  • Loading branch information
KANGDONGWOOKANGDONGWOOKANGDONGWOO92 committed Nov 23, 2024
2 parents b275390 + 3292d5c commit e64fdd5
Show file tree
Hide file tree
Showing 16 changed files with 1,044 additions and 204 deletions.
59 changes: 24 additions & 35 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,34 +1,14 @@
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- 브라우저 탭에 표시하고 싶은 제목을 적어주세요. -->
<title>판다마켓</title>
<!--
웹사이트를 식별하기 위해 브라우저에 표시하는 작은 아이콘을 '파비콘(Favicon)'이라고 합니다.
일반적으로 16x16px의 .ico 확장자로 되어 있고, 온라인에서 favicon generator를 찾아 사용하면 편리하게 이미지를 파비콘으로 전환할 수 있습니다.
-->
<link rel="icon" href="images/logo/favicon.ico" />

<!-- 외부 폰트 Pretendard의 스타일시트를 링크해 주세요. -->
<link
rel="stylesheet"
as="style"
crossorigin
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css"
/>

<!-- 스타일시트를 링크해 주세요. styles라는 폴더를 만들어 웹사이트 전역에서 공통으로 사용되는 global 스타일링과 각 페이지 별로 특정적인 스타일링을 위한 파일을 나눠 작성하면 가독성을 개선할 수 있어요. -->
<link rel="stylesheet" href="styles/global.css" />
<link rel="stylesheet" href="styles/home.css" />
</head>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>

<body>
<!--
<header>는 일반적으로 로고, 내비게이션 메뉴, 검색창 등의 요소로 구성됩니다.
내비게이션 메뉴 버튼이 여러 개라면 <nav> 시맨틱 태그로 감싸주어 레이아웃을 명확하게 해주면 좋습니다.

<<<<<<< HEAD
-->

<header>
Expand All @@ -48,27 +28,36 @@
-->
<div class="Tablet-size Moblet-size">
<div class="panda-logo">
=======
<div class="Tabletsize">
>>>>>>> 3292d5cea8c8c71adaf301f8c581e6fa4624c57a
<a href="/"
><img
src="images/logo/panda-market-logo.png"
alt="판다마켓 홈"
width="153"
/></a>
</div>
<<<<<<< HEAD
</div>
=======
>>>>>>> 3292d5cea8c8c71adaf301f8c581e6fa4624c57a
<!--
id 이름은 camelCase(단어 연결 시 맨 처음 단어를 제외한 단어들의 첫 글자를 대문자로 표기)로,
class 이름은 kebab-case(단어를 하이픈(-)으로 구분)를 사용하는 것을 권장합니다.
하지만 팀마다 선호하는 스타일이 다르기 때문에 naming convention 등 정해진 규칙에 따라 통일성 있게 사용하는 것이 더 중요합니다.
-->
<!-- 클릭 시 로그인 페이지로 이동. login.html 파일을 생성해 임시 페이지를 만들어 주세요. -->
<div classs="Tablet-size ">
<div classs="loginbutto">
<a href="login.html" id="loginLinkButton" class="button">로그인</a>
</div>
</div>
</header>


<div class="Tabletsize">
<div class="loginbutto">
<a href="login.html" id="loginLinkButton" class="button">로그인</a>
</div>
</div>

</header>
</div>
<!--
웹페이지의 주요 콘텐츠는 <main> 시맨틱 태그에 넣어주세요.
페이지 내용을 기능 및 특징에 따라 <section>으로 나누어 직관적으로 레이아웃을 살펴볼 수 있도록 구성해 보세요.
Expand Down
Loading

0 comments on commit e64fdd5

Please sign in to comment.