forked from ttv2004/Portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebdevelopment.html
73 lines (64 loc) · 2.22 KB
/
webdevelopment.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<title> Responsive Portfolio Website </title>
<link rel="stylesheet" href="webdevelopment.css">
<!-- Fontawesome CDN Link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!-- navgaition menu -->
<nav>
<div class="navbar">
<div class="logo"><a href="https://akp660.github.io/My-Portfolio/"> Portfolio. </a></div>
<div class="title"> Web Development Project </div>
<div class="media-icons">
<a href="https://twitter.com/s_tushar_"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/s_tushar_/"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/tushar-sharma-96285121b/"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/ttv2004"><i class="fab fa-github"></i></a>
</div>
</div>
</nav>
<!-- body -->
<div class="card-container">
<div class="card">
<img src="Images/5.png" alt="Project 1">
<div class="card-details">
<h2>Project 1</h2>
<div class="card-about">
<p>Work In Progress
<br>Work will be uploaded soon.</p>
</div>
<a href="#">Loading ............</a>
</div>
</div>
<div class="card">
<img src="Images/2.png" alt="Project 2">
<div class="card-details">
<h2>Project 2</h2>
<div class="card-about">
<p>Work In Progress
<br>Work will be uploaded soon.</p>
</div>
<a href="#">Loading ............</a>
</div>
</div>
<div class="card">
<img src="Images/9.png" alt="Project 3">
<div class="card-details">
<h2>Project 3</h2>
<div class="card-about">
<p>Work In Progress
<br>Work will be uploaded soon.</p>
</div>
<a href="#">Loading ............</a>
</div>
</div>
</div>
<!-- Footer Section Start -->
<script src="script.js"></script>
</body>
</html>