-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathindex.html
38 lines (38 loc) · 1.21 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="style.css">
<title>Daily Life of Codestates</title>
</head>
<body>
<main>
<header>
<h1>코드스테이츠 45기 수강생의 하루</h1>
</header>
<div class="imgs__container">
<div class="imgs__eat--wrapper wrapper">
<img class="imgs__eat" src="eat.svg" alt="bed">
</div>
<div class="imgs__sleep--wrapper wrapper">
<img class="imgs__sleep" src="sleep.svg" alt="sleep">
</div>
<div class="imgs__code--wrapper wrapper">
<img class="imgs__code" src="code.svg" alt="code">
</div>
<div class="imgs__repeat--wrapper wrapper">
<img class="imgs__repeat" src="repeat.svg" alt="repeat">
</div>
</div>
<div class="actions__container">
<button class="actions__eat">EAT</button>
<button class="actions__sleep">SLEEP</button>
<button class="actions__code">CODE</button>
<button class="actions__repeat">REPEAT</button>
</div>
</main>
</body>
<script src="script.js"></script>
</html>