-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
66 lines (57 loc) · 2.32 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/dd9b9172d1.js" crossorigin="anonymous"></script>
<link href="styles.css" rel="stylesheet" />
<title>Shobhan Sundar Goutam | Web Developer</title>
</head>
<body>
<nav class="navigation container">
<div class="nav-brand"><a href="home.html">Shobhan Sundar Goutam</a></div>
<ul class="list-non-bullet nav-pills">
<li class="list-item-inline">
<a class="link link-active" href="home.html">home</a>
</li>
<li class="list-item-inline">
<a class="link" href="projects.html">projects</a>
</li>
</ul>
</nav>
<header class="intro">
<img class="intro-img" src="images/coder.svg" alt="This is an image"/>
<h1 class="intro-heading">Shobhan Sundar Goutam | <span class="heading-inverted"> Web Developer</span></h1>
</header>
<section class="section offwhite">
<div class="container container-center">
<h1>Technologies</h1>
<p>I'm well familiar with HTML5, CSS3, Git, JavaScript, NodeJS, ReactJS, and Web Hosting</p>
</div>
</section>
<section class="section">
<div class="container container-center">
<h1>Projects</h1>
<p>I hosted my projects online as I wanted to showcase my work. Have a look. These projects show my knowledge on the above mentioned technologies.</p>
<a class="link link-primary" href="projects.html">See Projects</a>
</div>
</section>
<footer class="footer">
<div class="footer-header">Social Media Handles</div>
<ul class="social-links list-non-bullet">
<li class="list-item-inline">
<a class="link" href="https://github.com/Shobhan10">
<i class="fa fa-github"></i>
github
</a>
</li>
<li class="list-item-inline">
<a class="link" href="https://www.linkedin.com/in/shobhan-sundar-goutam">
<i class="fa fa-linkedin-square"></i>
linkedin
</a>
</li>
</ul>
</footer>
</body>
</html>