-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (54 loc) · 2.34 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
<!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 | Jay francis</title>
<link href="/styles.css" rel="stylesheet" />
</head>
<body>
<nav class="navigation">
<div class="container">
<div class="brand">JAYDEVELOPER</div>
<ul class="nav-options">
<li class="inline-list"><a class="link link-active" href="index.html">home</a></li>
<li class="inline-list"><a class="link" href="projects.html">projects</a></li>
<li class="inline-list"><a class="link" href="blogs.html">blogs</a></li>
</ul>
</div>
</nav>
<header class="container hero">
<img class="hero-img" src="/images/hero.svg" />
<h1>Jay Francis the <span class="hero-inverted" >Web developer</span></h1>
</header>
<section class="secondary-sec">
<div class="container container-centre ">
<h2>Skills</h2>
<p>I am familiar with JS, React, HTML5/CSS3, python and a little bit of being a masterchef if I should say so myself</p>
</div>
</section>
<section class="section">
<div class="container container-centre">
<h2>projects</h2>
<p>My work has been showcased and hosted in the link below</p>
<a class="link primary-link" href="/projects.html">See projects</a>
</div>
</section>
<section class="secondary-sec">
<div class="container container-centre ">
<h2>Blogs</h2>
<p>The link below has a list of blogs I have written</p>
<a class="link secondary-link" href="/blogs.html">See blogs</a>
</div>
</section>
<footer class="footer">
<div class="footer-header">My social links</div>
<ul class="social-links">
<li class="inline-list"><a class="link" href="https://www.linkedin.com/in/jaideep-francis-76a5a51b3/">linkedin</a> </li>
<li class="inline-list"><a class="link" href="https://www.instagram.com/not_so_deep/">Instagram</a> </li>
<li class="inline-list"><a class="link" href="https://github.com/jayfranco999">Github</a> </li>
</ul>
</footer>
</body>
</html>