-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
140 lines (139 loc) · 8 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!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>Document</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">
<section class="hello">
<div class="hello__container _container">
<div class="hello__content">
<h1 class="hello__title title">Hi, I am John,<br>Creative Technologist</h1>
<div class="hello__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>
<a href="" class="hello__btn btn">Download Resume</a>
</div>
<img class="hello__avatar" src="image/Group 1.jpg" alt="avatar">
</div>
</section>
<section class="recent-posts">
<div class="recent-posts__container _container">
<div class="recent-posts__header">
<div class="recent-posts__title title-posts">Recent posts</div>
<a href="" class="recent-posts__view-all">View all</a>
</div>
<div class="recent-posts__items">
<div class="recent-posts__column">
<article class="recent-posts__item recent-post">
<a href="" class="recent-post__title">Making a design system from scratch</a>
<div class="recent-post__info">12 Feb 2020 <span>|</span> Design, Pattern</div>
<div class="recent-post__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>
</article>
</div>
<div class="recent-posts__column">
<article class="recent-posts__item recent-post">
<a href="" class="recent-post__title">Creating pixel perfect icons in Figma</a>
<div class="recent-post__info">12 Feb 2020 <span>|</span> Figma, Icon Design</div>
<div class="recent-post__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>
</article>
</div>
</div>
</div>
</section>
<section class="featured-works">
<div class="featured-works__container _container">
<div class="featured-works__title title-posts">Featured works</div>
<div class="featured-works__items works">
<article class="works__item">
<a href="works.html" 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="works.html" 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="works.html" 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>
</div>
</div>
</section>
</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>