-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
132 lines (123 loc) · 5.69 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Metadata -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Subhadeep Dey | Portfolio">
<meta name="keywords" content="portfolio, HTML, CSS, JS, JavaScript, Full-Stack Web development, front-end">
<meta name="author" content="Subhadeep Dey">
<title>Subhadeep Dey | Portfolio</title>
<!-- CSS -->
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- Font -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:100,300,400">
<!-- Font Awesome JavaScript -->
<script defer src="https://use.fontawesome.com/releases/v5.0.9/js/all.js"
integrity="sha384-8iPTk2s/jMVj81dnzb/iFR2sdA7u06vHJyyLlAd4snFpCl/SnyUjRrbdJsw1pGIl" crossorigin="anonymous">
</script>
</head>
<body>
<div class="container">
<!-- Profile Name and Picture -->
<header class="row">
<div class="col-sm-6">
<img class="profile-picture img-circle img-responsive" src="img/profile.jpg" alt="Profile picture">
</div>
<div class="col-sm-6 profile-text">
<h1 class="profile-name text-thin">Subhadeep Dey</h1>
<h4 class="profile-caption text-thin">Full-Stack Ninja</h4>
<ul class="social-icons">
<li>
<a href="https://twitter.com/SDey_96" target="_blank">
<i class="fab fa-twitter fa-2x fa-fw"></i>
</a>
</li>
<li>
<a href="https://github.com/SDey96" target="_blank">
<i class="fab fa-github fa-2x fa-fw"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/sdey96" target="_blank">
<i class="fab fa-linkedin fa-2x fa-fw"></i>
</a>
</li>
</ul>
</div>
</header>
<!-- Top Line -->
<div class="row">
<div class="col-md-12">
<hr>
</div>
</div>
<!-- Hero Image -->
<div class="row">
<div class="col-md-12">
<img class="hero-image img-responsive" src="img/center-image.jpg" alt="Center Image">
</div>
</div>
<!-- Featured Work Section -->
<section class="row">
<div class="col-md-12">
<h2 class="header-featured-work text-muted text-thin">Featured Work</h2>
</div>
<article class="col-md-4 add-shadow">
<a href="https://github.com/SDey96/openlearn" class="thumbnail project-picture" target="_blank">
<img src="img/openlearn.png"
class="project-picture img-responsive"
alt="OpenLearn Screenshot">
</a>
<div class="project">
<h3 class="project-title text-thin">OpenLearn</h3>
<h4 class="project-subtitle text-thin">An open-source e-Learning platform.</h4>
<p class="project-url text-thin">
<i class="fab fa-github fa-fw"></i>
<a href="https://github.com/SDey96/openlearn" target="_blank">View on Github</a>
</p>
</div>
</article>
<article class="col-md-4 add-shadow">
<a href="https://github.com/SDey96/ElementX" class="thumbnail project-picture border" target="_blank">
<img src="img/elementx.jpg"
class="project-picture img-responsive"
alt="ElementX Screenshot">
</a>
<div class="project">
<h3 class="project-title text-thin">Element X</h3>
<h4 class="project-subtitle text-thin">A friendly tool to browse Periodic Table of Elements.</h4>
<p class="project-url text-thin">
<i class="fab fa-github fa-fw"></i>
<a href="https://github.com/SDey96/ElementX" target="_blank">View on Github</a>
</p>
</div>
</article>
<article class="col-md-4 add-shadow">
<a href="https://emojityper.com" class="thumbnail project-picture border" target="_blank">
<img src="img/emojityper.png"
class="project-picture img-responsive"
alt="EmojiTyper Screenshot">
</a>
<div class="project">
<h3 class="project-title text-thin">EmojiTyper</h3>
<h4 class="project-subtitle text-thin">Type words, receive emojis, and have fun!</h4>
<p class="project-url text-thin">
<i class="fab fa-github fa-fw"></i>
<a href="https://github.com/emojityper/emojityper" target="_blank">View on Github</a>
</p>
</div>
</article>
</section>
<!-- Footer -->
<footer class="row">
<div class="footer col-md-12">
© 2018 Subhadeep Dey
</div>
</footer>
</div>
</body>
</html>