-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
62 lines (55 loc) · 2.79 KB
/
blog.html
File metadata and controls
62 lines (55 loc) · 2.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Articles - Arun Roshan</title>
<link rel="stylesheet" href="blog.css">
</head>
<body>
<header>
<div class="container">
<h1>Welcome to Arun Roshan's Portfolio</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="aboutme.html">About Me</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="achive.html">Achievement</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="blog.html">Articles</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="articles">
<div class="container">
<h2 style="margin-top: 5%; margin-bottom: 5%;">Articles</h2>
<div class="article">
<h3>Ajna: A Low-Cost and Innovative Smart Glass for Blind People</h3>
<p>Hi, I’m Arun Roshan, a student of computer science engineering and information
systems at Vellore Institute of Technology. In this article, I’m going to share with you my research paper on Ajna, a smart glass for blind people, that I presented at the SET (Science Engineering and Technology) conference 2023 along with my teammates. Have you ever wondered how blind people can navigate the world without any assistance? How can they recognize the faces of their friends and family? How can they access the information and services that are available online? These are some of the questions that motivated us to create Ajna, a low-cost and innovative smart glass that can help blind people to walk freely and explore the world.</p>
<a href="https://www.linkedin.com/pulse/ajna-low-cost-innovative-smart-glass-blind-people-arun-roshan-2a04c/" class="read-more">Read Article</a>
</div>
<!-- <div class="article">
<h3>Title of Article 2</h3>
<p>[Brief introduction to the article topic]</p>
<a href="#" class="read-more">Read Article</a>
</div>
<div class="article">
<h3>Title of Article 3</h3>
<p>[Brief introduction to the article topic]</p>
<a href="#" class="read-more">Read Article</a>
</div> -->
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Arun Roshan. All rights reserved.</p>
</div>
</footer>
<script src="blog.js"></script>
</body>
</html>