-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworks.html
112 lines (112 loc) · 5.9 KB
/
works.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!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>Works</title>
</head>
<body>
<div class="wrapper">
<header class="header">
<div class="header__content">
<div class="header__menu menu">
<div class="menu__icon icon-menu">
<span></span>
<span></span>
<span></span>
</div>
<nav class="menu__body">
<ul class="menu__list">
<li><a href="works.html" class="menu__link @@if(link==1){_active}">Works</a></li>
<li><a href="blog.html" class="menu__link @@if(link==2){_active}">Blog</a></li>
<li><a href="contact.html" class="menu__link @@if(link==3){_active}">Contact</a></li>
</ul>
</nav>
</div>
</div>
</header>
<main class="page">
<div class="works page__container _container">
<h1 class="works__main-title title">Works</h1>
<div class="works__items">
<article class="works__item">
<a href="" class="works__image _ibg">
<img src="image/works/01.jpg" alt="Work #1">
</a>
<div class="works__body">
<a href="" class="works__title">Designing Dashboards</a>
<div class="works__info">
<div class="works__year">2020</div>
<div class="works__category">Dashboard</div>
</div>
<div class="works__text text">
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit. Exercitation veniam consequat sunt nostrud amet.
</div>
</div>
</article>
<article class="works__item">
<a href="" class="works__image _ibg">
<img src="image/works/02.jpg" alt="Work #1">
</a>
<div class="works__body">
<a href="" class="works__title">Vibrant Portraits of 2020</a>
<div class="works__info">
<div class="works__year">2018</div>
<div class="works__category">Dashboard</div>
</div>
<div class="works__text text">
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit. Exercitation veniam consequat sunt nostrud amet.
</div>
</div>
</article>
<article class="works__item">
<a href="" class="works__image _ibg">
<img src="image/works/03.jpg" alt="Work #1">
</a>
<div class="works__body">
<a href="" class="works__title">36 Days of Malayalam type</a>
<div class="works__info">
<div class="works__year">2017</div>
<div class="works__category">Dashboard</div>
</div>
<div class="works__text text">
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit. Exercitation veniam consequat sunt nostrud amet.
</div>
</div>
</article>
<article class="works__item">
<a href="" class="works__image _ibg">
<img src="image/works/04.jpg" alt="Work #1">
</a>
<div class="works__body">
<a href="" class="works__title">Components</a>
<div class="works__info">
<div class="works__year">2015</div>
<div class="works__category">Dashboard</div>
</div>
<div class="works__text text">
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit. Exercitation veniam consequat sunt nostrud amet.
</div>
</div>
</article>
</div>
</div>
</main>
<footer class="footer">
<div class="footer__content _container">
<div class="footer__social social">
<a href="#" class="social__item neither-footer__icon fab fa-facebook-square"></a>
<a href="#" class="social__item neither-footer__icon fab fa-instagram-square"></a>
<a href="#" class="social__item neither-footer__icon fab fa-pinterest-square"></a>
<a href="#" class="social__item neither-footer__icon fab fa-twitter-square"></a>
</div>
<div class="footer__copy">Copyright ©2020 All rights reserved</div>
</div>
</footer>
</div>
<script src="functions.js"></script>
<script src="https://kit.fontawesome.com/5a951c0c17.js" crossorigin="anonymous"></script>
</body>
</html>