-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (52 loc) · 2.31 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
<!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 | Abhay Raj</title>
<link href = "style.css" rel = "stylesheet" />
</head>
<body>
<nav class = "navigation container">
<div class = "nav-brand">Abhay Raj</div>
<ul class = "list-non-bullet nav-pills">
<li class = "list-inline">
<a class = "link" href="/">Home</a>
</li>
<li class = "list-inline">
<a class = "link" href="/projects.html">Projects</a>
</li>
<li class = "list-inline">
<a class = "link" href="./blogs/blogs.html">Blogs</a>
</li>
</ul>
</nav>
<header class = "web-dev">
<img class = "web-dev-img"src=" images/Web Developer.svg"/>
<h1 class = "web-dev-heading">const abhayRaj = <span class = "web-dev-inverted">"the future web developer"</span></h1>
</header>
<section class = "section ow">
<h1>Technologies</h1>
<p class = "section-sub">I'm familiar with <strong>HTML5, CSS3, Git, JavaScript, NodeJS, ReactJS, and Web Hosting</strong></p>
</section>
<section class = "section">
<h1>Projects</h1>
<p class = "section-sub">I like to showcase my work and thus, you can see my projects hosted online</p>
<div class = "link link-div"><a class = "link link-primary"href="/">See Projects</a></div>
</section>
<section class = "section ow">
<h1>Blogs</h1>
<p class = "section-sub">I'm also working on some <strong>technical and non technical</strong> blogs. I like to document my journey of learning.</p>
<div class = "link link-div"><a class = "link link-primary"href="/blogs.html">See Blogs</a>
</div></section>
<footer class ="footer">
<div class = "footer-header">social media presence</div>
<ul class = "social-links list-non-bullet">
<li class = "list-inline"><a class = "link" href ="/">Github</a></li>
<li class = "list-inline"><a class = "link" href ="/">Twitter</a></li>
<li class = "list-inline"><a class = "link" href ="/">LinkedIn</a></li>
</ul>
</footer>
</body>
</html>