-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprojects.html
92 lines (92 loc) · 3.25 KB
/
projects.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="CSS/style.css" />
<link rel="shortcut icon" href="img/projects.png" type="image/x-icon" />
<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"
/>
<title>Projects</title>
</head>
<body>
<header>
<nav>
<div class="left">Ayush का Portfolio</div>
<div class="right">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact-me.html">Contact Me</a></li>
</ul>
</div>
</nav>
</header>
<div class="about-section">
<div class="project-container">
<div class="project-column">
<dl>
<dt><u>Portfolio Website</u></dt>
<dd>
Created a self-portfolio with information of Home, About, Projects
Services, contact by using VS Code 3 languages were used - HTML
for creating box inside a webpage, CSS for designing and a little
bit JS for animation
</dd>
</dl>
</div>
<div class="project-column">
<dl>
<dt><u>Netflix Clone</u></dt>
<dd>
Created a netflix clone website using HTML and CSS in VS Code IDE
</dd>
</dl>
</div>
</div>
</div>
<section class="gapping"></section>
<footer>
<div class="footer">
<div class="footer-first">
<h3>Ayush's Developer Portfolio</h3>
</div>
<div class="footer-second">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact-me.html">Contact Me</a></li>
</ul>
</div>
<div class="footer-third">
<ul>
<li><a href="mailto:ayushkumar47834@gmail.com">Email</a></li>
<li>
<a href="https://www.linkedin.com/in/ayushhhhhh/">LinkedIn</a>
</li>
<li>
<a href="https://www.instagram.com/arey.ayush/">Instagram</a>
</li>
<li>
<a href="https://x.com/http_ayush?t=AZkDsEXD1WUJRJ8YrZ599w&s=09"
>X</a
>
</li>
<li>
<a href="https://www.facebook.com/ayush.kumar.432">Facebook</a>
</li>
</ul>
</div>
</div>
<div class="footer-rights">Copyright © All rights reserved</div>
</footer>
</body>
</html>