-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreations.html
More file actions
70 lines (66 loc) · 3.02 KB
/
creations.html
File metadata and controls
70 lines (66 loc) · 3.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Creations - Arjun Verma</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="creations.css">
</head>
<body>
<nav class="navbar">
<div class="nav-container">
<div class="nav-menu">
<a href="index.html" class="nav-link">Home</a>
<a href="creations.html" class="nav-link active">Creations</a>
</div>
</div>
</nav>
<main class="main-content">
<div class="content-container">
<div class="page-content">
<h1 class="page-title">Creations</h1>
<p class="page-subtitle">A collection of projects, reasearch, and experinents I have worked on.</p>
<!-- <div class="projects-list">
<div class="project-item">
<h3 class="project-title">Project One</h3>
<p class="project-description">
A web application built with React and Node.js that solves real-world problems
through intuitive design and robust functionality.
</p>
<div class="project-links">
<a href="#" class="project-link">View Live</a>
<span class="separator">|</span>
<a href="#" class="project-link">Source Code</a>
</div>
</div>
<div class="project-item">
<h3 class="project-title">Project Two</h3>
<p class="project-description">
An innovative mobile-first web experience showcasing modern CSS techniques
and responsive design principles.
</p>
<div class="project-links">
<a href="#" class="project-link">View Live</a>
<span class="separator">|</span>
<a href="#" class="project-link">Source Code</a>
</div>
</div>
<div class="project-item">
<h3 class="project-title">Project Three</h3>
<p class="project-description">
A creative coding experiment exploring generative art and interactive
visualizations using JavaScript and Canvas API.
</p>
<div class="project-links">
<a href="#" class="project-link">View Live</a>
<span class="separator">|</span>
<a href="#" class="project-link">Source Code</a>
</div>
</div>
</div> -->
</div>
</div>
</main>
</body>
</html>