-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
184 lines (169 loc) · 8.6 KB
/
index.html
File metadata and controls
184 lines (169 loc) · 8.6 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
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>devfolio</title>
<!-- Favicon -->
<link rel='icon' href='#' type='image/x-icon' />
<!-- Glider Stylesheet -->
<link rel="stylesheet" href="style/glider-css/glide.core.min.css">
<link rel="stylesheet" href="style/glider-css/glide.theme.min.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;1,400&display=swap" rel="stylesheet">
<!-- Fontawesome Icons -->
<script src="https://kit.fontawesome.com/7e611a5a25.js" crossorigin="anonymous"></script>
<!-- Main CSS -->
<link rel="stylesheet" href="style/style.css">
<!-- Custom CSS for slider -->
<link rel="stylesheet" href="style/projects.css">
</head>
<body>
<nav id="sidebar">
<ul id="sidebar-nav">
<li id="brand" class="nav-item">
<a href="#about" class="nav-link brand-link">
<i class="fas fa-user-tie link-icon"></i>
</a>
</li>
<li class="nav-item"><a href="#project" class="nav-link"><i class="fas fa-file-code link-icon"></i><span
class="link-text">Projects</span></a></li>
<li class="nav-item"><a href="#skills" class="nav-link"><i class="fas fa-address-card link-icon"></i><span
class="link-text">Skills</span></a></li>
<li class="nav-item"><a href="#contact" class="nav-link"><i class="fas fa-envelope link-icon"></i><span
class="link-text">Contact</span></a></li>
</ul>
</nav>
<main>
<!-- About section -->
<section id="about" class="main-item">
<div class="container" id="about-container">
<div id="about-wrapper">
<img src="images/my-image.png" alt="" id="myImage" class="about-item">
<div id="about-me" class="about-item">
<h3 class="about-me-item">Hi, I am Ashu.</h3>
<p class="about-me-item">I am front-end web developer.</p>
<p class="about-me-item">I am passionate about building scalable software, creating effective
solutions, and learning every day to grow professionally in the IT field.</p>
<button class="resume btn">See Resume</button>
</div>
</div>
</div>
</section> <!-- About Section end here -->
<!-- Projects section -->
<section id="project" class="main-item">
<div class="container" id="project-container">
<div class="glide">
<div class="glide__track" data-glide-el="track">
<ul class="glide__slides">
<li class="glide__slide">
<div class="project-wrapper">
<img src="images/img2.jpg" alt="">
<div class="project-about">
<h3 class="p-heading">Project Heading</h3>
<p class="p-description">Lorem ipsum dolor sit amet consectetur adipisicing elit. Itaque est nobis quos quae qui quas
asperiores inventore odio iusto praesentium consequuntur magnam, impedit eaque
necessitatibus, accusantium maxime? Mollitia, a exercitationem.</p>
</div>
</div>
</li>
<li class="glide__slide">
<div class="project-wrapper">
<img src="images/img1.jpg" alt="">
<div class="project-about">
<h3 class="p-heading">Project Heading</h3>
<p class="p-description">Lorem ipsum dolor sit amet consectetur adipisicing elit. Itaque est nobis quos quae qui quas
asperiores inventore odio iusto praesentium consequuntur magnam, impedit eaque
necessitatibus, accusantium maxime? Mollitia, a exercitationem.</p>
</div>
</div>
</li>
<li class="glide__slide">
<div class="project-wrapper">
<img src="images/img2.jpg" alt="">
<div class="project-about">
<h3 class="p-heading">Project Heading</h3>
<p class="p-description">Lorem ipsum dolor sit amet consectetur adipisicing elit. Itaque est nobis quos quae qui quas
asperiores inventore odio iusto praesentium consequuntur magnam, impedit eaque
necessitatibus, accusantium maxime? Mollitia, a exercitationem.</p>
</div>
</div>
</li>
</ul>
</div>
<div class="glide__arrows" data-glide-el="controls">
<button class="glide__arrow glide__arrow--left" data-glide-dir="<"><i class="far fa-arrow-alt-circle-left"></i></button>
<button class="glide__arrow glide__arrow--right" data-glide-dir=">"><i class="far fa-arrow-alt-circle-right"></i></button>
</div>
<div class="glide__bullets" data-glide-el="controls[nav]">
<button class="glide__bullet" data-glide-dir="=0"></button>
<button class="glide__bullet" data-glide-dir="=1"></button>
<button class="glide__bullet" data-glide-dir="=2"></button>
</div>
</div>
</div>
</section> <!-- Project Section end here -->
<!-- Skills section-->
<section id="skills" class="main-item">
<div class="container" id="skills-container">
<div class="languages">
<span class="heading">Front-end</span>
<i class="fab fa-js"></i>
<i class="fab fa-html5"></i>
<i class="fab fa-css3"></i>
</div>
<div class="languages">
<span class="heading">Back-end</span>
<i class="fab fa-node"></i>
</div>
<div class="languages">
<span class="heading">Tools</span>
<i class="fab fa-git"></i>
</div>
</div>
</section> <!-- Skills Section end here -->
<!-- contact section -->
<section id="contact" class="main-item">
<div class="container" id="contact-container">
<h2>Would you like to work with me? Awesome!!!</h2>
<div id="contact-button-container">
<a href="mailto:xyz@gmail.com" class="contact-button btn">Email me</a>
or
<a href="tel:+0123456789" class="contact-button btn">Call me</a>
</div>
<div id="social-container" class="contact-container-item">
<a href="#" class="social-item">
<i class="fab fa-github social-icon"></i>
</a>
<a href="#" class="social-item">
<i class="fab fa-linkedin-in social-icon"></i>
</a>
<a href="#" class="social-item">
<i class="fab fa-instagram social-icon"></i>
</a>
</div>
</div>
</section><!-- Contact Section end here -->
</main> <!-- Main end here-->
<!-- JavaScript Here-->
<!-- Custom JavaScript -->
<script src="script/script.js"></script>
<!-- glider.js -->
<script src="script/glide.min.js"></script>
<!-- Custom JS for slider -->
<script>
const options = {
type: 'carousel',
startAt: 0,
perView: 2,
gap: 0,
breakpoints: {
767: {
perView: 1
},
}
};
new Glide('.glide', options).mount()
</script>
</body>
</html>