-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
103 lines (98 loc) · 3.18 KB
/
blogs.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
<!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, minimal, ui, design web development, projects, skills, html, css"
/>
<meta name="author" content="Nilaacodes" />
<meta property="og:title" content="Nilaacodes | Blogs" />
<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 | Blogs</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/jpg" 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">Works</a>
<a href="blogs.html" style="text-decoration: underline; color: white"
>Blogs</a
>
<a href="contact.html">Contact Me</a>
</nav>
<main>
<section>
<h1>My Blogs</h1>
<ul>
<li>
<a href="blog-example.html">The Art of Minimal UI Design</a> - A
blog post on creating simple and effective user interfaces.
</li>
<li>
<a
href="https://nilaacodes.vercel.app/writings/building-a-component-for-my-portfolio-that-shows-how-far-you-are-from-me"
>Building a component for my portfolio that shows how far you are
from me.</a
>
- Tutorial on how to build a component that calculates the distance
between two location through ip address.
</li>
<li>
<a
href="https://nilaacodes.vercel.app/writings/real-madrid-lost-pre-season-el-clasico"
>Real Madrid lost their pre season El Clasico, and you know what
that means!!</a
>
-Preseason has started and Real Madrid have lost the first two
games.
</li>
</ul>
</section>
</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>