-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworks.html
133 lines (127 loc) · 4.13 KB
/
works.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- optional for SEO -->
<meta
name="description"
content="A minimal portfolio website showcasing my skills, projects, and writings."
/>
<meta
name="keywords"
content="portfolio, minimal design,minimalism, web development, projects, skills, html, css"
/>
<meta name="author" content="Nilaacodes" />
<meta property="og:title" content="Nilaacodes | Works" />
<meta
property="og:description"
content="A minimal portfolio website showcasing my skills, projects, and writings."
/>
<meta
property="og:image"
content="https://nilaachandra.github.io/animepfp.jpg"
/>
<meta property="og:url" content="https://nilaachandra.github.io/minimalio" />
<meta property="og:type" content="website" />
<!-- optional for SEO -->
<title>Nilaacodes | Works</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/png" href="./animepfp.jpg" />
</head>
<body>
<header>
<img src="./animepfp.jpg" alt="" height="90" width="90" />
<div>
<div>
<h1 style="line-height: 0">Nilaa Laishram</h1>
</div>
<p style="color: #fd6500;">
Full Stack Developer | UI Designer
</p>
</div>
</header>
<nav>
<a href="index.html">Home</a>
<a href="works.html" style="text-decoration: underline; color: white"
>Works</a
>
<a href="blogs.html">Blogs</a>
<a href="contact.html">Contact Me</a>
</nav>
<main>
<section class="experience">
<h1>Experience</h1>
<ul>
<li><span>Developer Freelancer</span> ● January 2024 - Present</li>
<li>
<span>Web Dev Instructor, SkyIL Computer Institute</span> ● May 2023
- Present
</li>
</ul>
</section>
<section class="projects">
<h1>Projects</h1>
<ul>
<li>
<a href="https://Spotlistify.vercel.app" target="_blank"
>Spotlistify</a
>
- A directory of Spotify playlists.
</li>
<li>
<a href="https://sillyquestions.vercel.app" target="_blank"
>Silly Questions</a
>
- An AI powered silly tecch questions generator.
</li>
<li>
<a href="https://27startups.vercel.app" target="_blank"
>27Startups</a
>
- A directory of app, product, bussinesses, startups ideas.
</li>
<li>
<a href="https://Brainwavelandingclone.vercel.app" target="_blank"
>Brainwave</a
>
- Modern UI/UX website developed using React.js and Tailwind CSS
exemplifies modern UI/UX principles.
</li>
<li>
<a href="https://Logomoji.vercel.app" target="_blank">Logomoji </a>
- A simple, minimal, easy to use and free Emoji Logo maker for your
next website.
</li>
<li>
<a href="https://mirandaportfolioclone.vercel.app/" target="_blank"
>Niccollo Miranda
</a>
- A portfolio clone of a famous designer Niccollo Miranda
</li>
<li>
<a href="https://Coffeehubb.vercel.app/" target="_blank"
>Coffeehubb
</a>
- My first major web dev project
</li>
</ul>
</section>
<a href="https://nilaacodes.vercel.app/projects"
>More Projects on my Main Portfolio</a
>
</main>
<hr/>
<footer>© 2024 Nilaacodes. All rights reserved.
<p>
Disclaimer: Building this minimal design was tougher than it looks.
Every detail took a lot of effort to get just right. Thanks for
visiting, and I hope you enjoy the simplicity!
</p>
<p style="font-style: italic">
"Good design is as little design as possible." - some German
motherfucker
</p>
</footer>
</body>
</html>