-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathour_projects.html
70 lines (70 loc) · 3.23 KB
/
our_projects.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=Our , initial-scale=1.0">
<link rel="stylesheet" href="./style/gl_style/global.css">
<title>Our Project</title>
<script type="module" src="./js/main.js"></script>
</head>
<body>
<my-header></my-header>
<main class="project container">
<div class="project__title-main">
<h1 class="light-title"> Our <span class="dark-title">Project</span></h1>
</div>
<div class="project__block">
<section class="project__first">
<img class="project__img" src="./assets/image/projects_1.jpg" alt="sample1">
<div class="project__content">
<h2 class="project__title">Sample Project</h2>
<p class="project__text">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<div class="project__btn btn">
<a class="btn-title title-view" href="/sample.html">VIEW MORE</a>
<img class="arrow" src="./assets/icon/arrow.png" alt="arrow">
</div>
</div>
</section>
<section class="project__second">
<img class="project__img" src="./assets/image/projects_2.jpg" alt="sample2">
<div class="project__content" >
<h2 class="project__title">Sample Project 2</h2>
<p class="project__text">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<div class="project__btn btn">
<a class="btn-title title-view" href="/sample.html">VIEW MORE</a>
<img class="arrow" src="./assets/icon/arrow.png" alt="arrow">
</div>
</div>
</section>
<section class="project__third">
<img class="project__img" src="./assets/image/projects_3.jpg" alt="sample3">
<div class="project__content">
<h2 class="project__title">Sample Project 3</h2>
<p class="project__text">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<div class="project__btn btn">
<a class="btn-title title-view" href="/sample.html">VIEW MORE</a>
<img class="arrow" src="./assets/icon/arrow.png" alt="arrow">
</div>
</div>
</section>
</div>
<div class="project__box1">
<div class="project__number figures">
<a class="figure one" href="#">01</a>
<a class="border" href="#"></a>
<a class="figure two" href="#">05</a>
</div>
<div class="project__switch switches">
<button class="left-switch switch ">
<img class="switch-arrow left-arrow" src="./assets/icon/arrow.png" alt="arrow">
</button>
<button class="right-switch switch">
<img class="switch-arrow right-arrow" src="./assets/icon/arrow.png" alt="arrow">
</button>
</div>
</div>
</main>
<my-footer></my-footer>
</body>
</html>