-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (98 loc) · 3.81 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home | Tapaj Kumar Das</title>
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/master.css">
<link rel="icon" href="images/favicon.ico">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-210720350-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-210720350-1');
</script>
</head>
<body>
<div class="container">
<nav class="left-sidebar">
<ul>
<li><a href="#about-me">About Me</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact Me</a></li>
</ul>
</nav>
<div class="right-content landing-page">
<header>
<h1 class="logo">Tapaj Kumar Das<span class="highlight">.</span></h1>
<a href="assets/resume_dark.pdf" target="_blank">Download My Resume</a>
</header>
<img src="images/bg_image.png" alt="">
<img src="images/bg_image.png" alt="">
<h1>Student,<br>Front End Designer<br>& Developer</h1>
</div>
<div class="clear"></div>
<main class="right-content">
<div class="about-me-container" id="about-me">
<h2>About Me</h2>
<p>
My name is Tapaj Kumar Das. I am currently pursing MCA at University of Hyderabad.<br>
I love designing awesome user interfaces, and turn them into working websites and apps.
</p>
</div>
<h2 class="project-container" id="projects">Recent Projects</h2>
<div class="project-card-column">
<a href="https://github.com/Tapaj/programming">
<div class="project-card">
<p>
Moodle<br>
Plugin Development<br>
(Ongoing)
</p>
</div>
</a>
<a href="https://github.com/Tapaj/credible">
<div class="project-card">
<p>
Credible<br>
(Website Design)
</p>
</div>
</a>
</div>
<div class="clear"></div>
<div class="project-card-column">
<div class="project-card">
<p>
Found nothing interesting?<br>
<a href="https://github.com/Tapaj">Go to Github</a>
</p>
</div>
</div>
<div class="clear"></div>
</main>
<div class="clear"></div>
</div>
<footer id="contact">
<div class="container">
<aside class="left-sidebar">
<h3>Social</h3>
<ul>
<li><a href="https://github.com/tapaj" target="_blank">Github</a></li>
<li><a href="https://linkedin.com/in/tapaj" target="_blank">LinkedIn</a></li>
</ul>
</aside>
<div class="right-content">
<h2>
Think there is something I can help you with.<br>
Feel free to contact.
</h2>
<a href="mailto:[email protected]">Send a mail</a>
</div>
</div>
</footer>
</body>
</html>