-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (64 loc) · 2.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>home | tuhin roy</title>
<link href="styles.css" rel="stylesheet">
</head>
<body>
<nav class="navigation">
<div class="nav-brand">Tuhin Roy</div>
<ul class="list-non-bullets nav-pills">
<li class="list-item-inline">
<a class="link link-active" href="/">home</a>
</li>
<li class="list-item-inline">
<a class="link" href="/projects.html">projects</a>
</li>
<li class="list-item-inline">
<a class="link" href="/blogs.html">blogs</a>
</li>
</ul>
</nav>
<header class="hero">
<img class="hero-img" src="images/header.svg" />
<h1 class="hero-heading">a full stack engineer with affection for <span class="heading-inverted">startups, wealth
and books</span></h1>
</header>
<section class="section ow">
<div class="container container-center">
<h1>technologies</h3>
<p>I have hands-on experience on HTML5, CSS3, UI Prototyping, Git, JavaScript, Node.js, React.js, Angular,
GraphQL, MongoDB,
MySQL and
AWS</p>
</div>
</section>
<section class="section">
<div class="container container-center">
<h1>projects</h3>
<p>I like to create small to medium complexity projects to prototype ideas which you can see from below</p>
<a class="link link-secondary" href="/projects.html">BROWSE PROJECTS</a>
</div>
</section>
<section class="section ow">
<div class="container container-center">
<h1>blogs</h3>
<p>I'm active on linkein and twitter and very soon starting my blogging space. More details coming very soon.
</p>
<a class="link link-secondary" href="/blogs.html">READ BLOGS</a>
</div>
</section>
<footer class="footer">
<!-- Do not use headers in footer -->
<div class="footer-header">connect with me</div>
<ul class="social-links list-non-bullets">
<li class="list-item-inline"><a class="link" href="https://github.com/Troy96">github</a></li>
<li class="list-item-inline"><a class="link" href="https://twitter.com/2hinRoy">twitter</a></li>
<li class="list-item-inline"><a class="link" href="https://www.linkedin.com/in/tuhin-roy/">linkedin</a></li>
</ul>
</footer>
</body>
</html>