-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.html
More file actions
59 lines (59 loc) · 1.8 KB
/
sample.html
File metadata and controls
59 lines (59 loc) · 1.8 KB
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Achieve</title>
<link rel="stylesheet" href="./css/normalize.css">
<link rel="stylesheet" href="./css/sample.css">
</head>
<body>
<header>
<ul>
<li class="left"><a href="#">Achieve</a></li>
<li class="left"><a href="#">Contact Us</a></li>
<li class="right"><a href="#">Sign up</a></li>
<li class="right"><a href="#">Login</a></li>
</ul>
</header>
<section class="main-header">
<img src="./images/achieve.png">
</section>
<section class="about">
<h1>About Achieve</h1>
<p>
Achieve is an educational material page created for students. <br>
By completing the Achieve, you will be able to pass the HTML task.
</p>
<p>
Achieve is a mockup of the top page of the task management application. <br>
It is a page that explains the functions of the application and allow team members to know what task they are currently working on.
</p>
</section>
<section class="function">
<h1>Function</h1>
<div class="function-images">
<div class="function-image">
<img src="./images/key.png">
<p>Login function</p>
</div>
<div class="function-image">
<img src="./images/mails.png">
<p>E-mail sending function</p>
</div>
<div class="function-image">
<img src="./images/girls.png">
<p>Friend connection function</p>
</div>
<div class="function-image">
<img src="./images/comment.png">
<p>Comment posting function</p>
</div>
</div>
</section>
<footer>
<p>Operating company DIVE INTO CODE</p>
<p>© 2015-2018 Copyright DIVE INTO CODE Corp.</p>
</footer>
</body>
</html>