-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (86 loc) · 4.07 KB
/
index.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">
<title>Amit Bora</title>
<meta name="description" content="A portfolio website of Amit Bora.">
<meta name="keywords" content="Amit Bora, Amit Singh Bora, Portfolio, Projects, Contact">
<meta name="author" content="Amit Singh Bora">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#about">about</a></li>
<li><a href="#projects">projects</a></li>
<li><a href="#contact">contact</a></li>
</ul>
</nav>
</header>
</header>
<main>
<section id="about">
<h1>Hello World!</h1>
<p>I am Amit Bora.</p>
<a href="#contact">Get in touch 🤙🏻</a>
</section>
<section id="projects">
<h1>Projects</h1>
<div class="projects-grid">
<div class="project-item">
<h2>Chat App</h2>
<p>An interactive real-time chat application that allows users to communicate instantly.</p>
<a href="https://github.com/amitb0ra/chat-app/" target="_blank" class="project-link">Repository</a>
<a href="https://chat-app.amitbora.me/" target="_blank" class="project-link">Deploy</a>
</div>
<div class="project-item">
<h2>Watch Party</h2>
<p>A platform to watch videos together.</p>
<a href="https://github.com/amitb0ra/watch-party/" target="_blank"
class="project-link">Repository</a>
<a href="https://watch-party.amitbora.me/" target="_blank" class="project-link">Deploy</a>
</div>
<div class="project-item">
<h2>AI Movie Recommender</h2>
<p>An intelligent system that suggests movies based on your preferences and viewing history.</p>
<a href="https://github.com/amitb0ra/ai-movie-recommender/" target="_blank"
class="project-link">Repository</a>
<a href="https://ai-movie-recommender.amitbora.me/" target="_blank" class="project-link">Deploy</a>
</div>
<div class="project-item">
<h2>GitHub Activity Generator</h2>
<p>A tool to generate and visualize your GitHub activity in a creative way.</p>
<a href="https://github.com/amitb0ra/github-activity-generator/" target="_blank"
class="project-link">Repository</a>
<a href="https://github-activity-generator.amitbora.me/" target="_blank"
class="project-link">Deploy</a>
</div>
</div>
<h3>More projects coming soon...</h3>
</section>
<section id="contact">
<h1>Get in touch</h1>
<div class="contact-info">
<a href="mailto:[email protected]" class="contact-item">
<img src="assets/email.svg" alt="email-logo" width="24" height="24"> Email
</a>
<a href="https://github.com/amitb0ra" target="_blank" class="contact-item">
<img src="assets/github.svg" alt="github-logo" width="24" height="24"> GitHub
</a>
<a href="https://www.linkedin.com/in/amitb0ra" target="_blank" class="contact-item">
<img src="assets/linkedin.svg" alt="linkedin-logo" width="24" height="24"> LinkedIn
</a>
<a href="https://twitter.com/amitb0ra" target="_blank" class="contact-item">
<img src="assets/x.svg" alt="twitter-logo" width="24" height="24"> Twitter
</a>
</div>
</section>
</main>
<footer>
<p>made with ❤️ in india</p>
</footer>
</body>
</html>