Skip to content

Commit

Permalink
기본 html 뼈대
Browse files Browse the repository at this point in the history
  • Loading branch information
anteater333 committed Jan 21, 2024
1 parent 88e8404 commit b04d302
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html> <!-- DTD, Document Type Definition -->
<html lang="ko"> <!-- HTML 적용 범위 -->
<head>
<!-- 페이지에 대한 설명 -->
<title>도마도 - 실습</title> <!-- 웹 브라우저에 표시되는 웹 페이지의 제목 -->

<meta charset="UTF-8" /> <!-- 메타 정보 태그 -->
<link rel="stylesheet" href="/style.css"> <!-- 외부 리소스 연결 태그 -->
</head>

<body>
<!-- 웹 브라우저가 렌더링 하는 웹 페이지 본문 -->
<div id="title-area">
<h3>domado</h3>
<h1>도마도</h1>
<h2>뽀모도로 타이머</h2>
</div>

<div id="timer-area">
<span>25:00</span>
</div>

<div id="button-area">
<button>시작</button>
</div>
</body>
</html>
Empty file added style.css
Empty file.

0 comments on commit b04d302

Please sign in to comment.