-
Notifications
You must be signed in to change notification settings - Fork 3
/
webdev.html
executable file
·134 lines (109 loc) · 5.51 KB
/
webdev.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
<!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="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png" />
<link rel="manifest" href="favicon/site.webmanifest" />
<link rel="stylesheet" href="style/webdev.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css"
integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<title>WEBDEV PORTFOLIO</title>
</head>
<body>
<div class="custom__cursor__outer"></div>
<div class="custom__cursor__inner"></div>
<div class="overlay"></div>
<nav class="nav">
<a href="index.html">
<img src="logos/1x/Asset 1.png" alt="" class="logo" />
</a>
<ul class="menu desktop-menu">
<li>
<a href="index.html" class="menu-item hvr-underline-from-left">HOME</a>
</li>
<li>
<a href="https://mohammadshaad.github.io/#about" class="menu-item hvr-underline-from-left">ABOUT</a>
</li>
<li>
<a href="https://mohammadshaad.github.io//#portfolio" class="menu-item hvr-underline-from-left active-page">PORTFOLIO</a>
</li>
<li>
<a href="https://mohammadshaad.github.io/#blogs" class="menu-item hvr-underline-from-left">BLOGS</a>
</li>
<li>
<a href="https://mohammadshaad.github.io/#resume" class="menu-item hvr-underline-from-left">RESUME</a>
</li>
</ul>
<!-- Toggle menu screen -->
<i class="bi bi-list" id="toggle-menu"></i>
<div class="mobile-menu">
<i class="bi bi-x" id="close-btn"></i>
<ul class="menu menu-items">
<li class="menu-item">
<a href="index.html" class="hvr-underline-from-left item">HOME</a>
</li>
<li class="menu-item">
<a href="https://mohammadshaad.github.io/#about" class="hvr-underline-from-left item">ABOUT</a>
</li>
<li class="menu-item">
<a href="https://mohammadshaad.github.io/#portfolio"
class="hvr-underline-from-left item">PORTFOLIO</a>
</li>
<li>
<a href="https://mohammadshaad.github.io/#blogs" class="menu-item hvr-underline-from-left">BLOGS</a>
</li>
<li class="menu-item">
<a href="https://mohammadshaad.github.io/#resume" class="hvr-underline-from-left item">RESUME</a>
</li>
</ul>
</div>
</nav>
<div class="container">
<div class="wrapper">
<div class="one">
<div class="one-img">
<img src="images/enactus.png" alt="project-thumbnail">
</div>
<div class="one-text">
<h3 class="title">Enactus E-Commerce Website</h3>
<p class="detail">Built the e-commerce application for Enactus VITC where users can see various products and purchase it by doing the payment on the same plateform.</p>
<a href="https://www.enactusvitc.com/" target="_blank">READ MORE ></a>
</div>
</div>
<div class="one">
<div class="one-text">
<h3 class="title">Nexapex Job Searching & Employee Hiring Website</h3>
<p class="detail">Developed the platform for Nexapex HR Global Company where users can search for jobs as well as companies can look for employees and hire them.</p>
<a href="https://nexapex-v1.vercel.app/">READ MORE ></a>
</div>
<div class="one-img">
<img src="images/nexapex.png" alt="project-thumbnail">
</div>
</div>
<div class="one">
<div class="one-img">
<img src="images/technovit.png" alt="project-thumbnail">
</div>
<div class="one-text">
<h3 class="title">TechnoVIT'23 Website</h3>
<p class="detail">Designed & developed the website along with other teammates for the TechnoVIT'23, the largest tech fest of VIT Chennai</p>
<a href="https://www.technovitchennai.com/" target="_blank">READ MORE ></a>
</div>
</div>
</div>
</div>
<script src="js/webdev.js"></script>
</body>
</html>