-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
81 lines (75 loc) · 3.09 KB
/
about.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About</title>
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" />
<script src="https://kit.fontawesome.com/f3be76aa0e.js" crossorigin="anonymous"></script>
<link rel="icon" href="./image/icon/favicon_greentalk-32x32.png" sizes="32x32" type="image/png" />
<link rel="icon" href="./image/icon/favicon_greentalk-48x48.png" sizes="48x48" type="image/png" />
</head>
<body>
<nav class="navbar">
<div class="navbar__logo">
<img src="./image/icon/greenTalk_icon.png" alt="GreenTalk Logo" class="navbar__logo-image" />
<a href="index.html">GreenTalk</a>
</div>
<ul class="navbar__menu">
<li><a href="index.html#home">Home</a></li>
<li><a href="index.html/#gallery">Gallery</a></li>
<li><a href="index.html#qna">FAQ</a></li>
<li><a href="index.html#journal">Journal</a></li>
<li><a href="about.html" class="active">About</a></li>
</ul>
<a href="#" class="navbar__toggleBtn">
<i class="fas fa-bars"></i>
</a>
</nav>
<section id="about" class="section">
<h2>About</h2>
<hr style="border: 0px color= silver" width="100%" />
<p>
GreenTalk-식집사를 위한 커뮤니티는 각자의 삶에서 자연의 아름다움을 <br />
함께 느끼고 싶어하는 모든 분들과 함께 만들어갑니다.
</p>
<p>
함께할 반려 식물에 대해 깊이 고민하고 <br />
키우고 있는 식물에 관한 기록물 관리로<br />
식집사분들이 식물에 오로지 집중하실 수 있습니다.
</p>
</section>
<section id="info" class="section">
<h2>Info</h2>
<hr style="border: 0px color= silver" width="100%" />
<div class="info__container">
<div class="info__box">
<img src="./image/about/about_gallery.jpg" alt="Gallery" class="info__image" />
<h3>Gallery</h3>
<p>다양한 식물 리스트를 확인하세요.</p>
</div>
<div class="info__box">
<img src="./image/about/about_journal.jpg" alt="Journal" class="info__image" />
<h3>Journal</h3>
<p>내 식물에 관해 기록하고 관리하세요.</p>
</div>
<div class="info__box">
<img src="./image/about/about_qna.jpg" alt="Q&A" class="info__image" />
<h3>FAQ</h3>
<p>자주 묻는 질문과 답변을 확인하세요.</p>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="contact">
<h4>Contact Us</h4>
<p>For any inquiries, reach us at [email protected]</p>
</div>
<p>© 2024 GreenTalk. All rights reserved.</p>
</div>
</footer>
<script src="main.js"></script>
</body>
</html>