-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (95 loc) · 3.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Web Developer</title>
<link rel="stylesheet" href="./assets/style.css">
</head>
<body>
<!--start header-->
<header>
<h1>Niraj Limbu</h1>
<nav>
<a href="#about">About Me</a>
<a href="#work">Work</a>
<a href="#contact">Contact Me</a>
<a href="./resume.html" target="_blank">Resume</a>
</nav>
</header>
<!--end header-->
<!--hero banner-->
<section class="hero-banner">
<div>
<h2>Welcome to my WebPage!</h2>
</div>
</section>
<!--end hero-->
<main class="page-wrapper">
<!-- about me -->
<section class="page-section" id="about">
<h2>About Me</h2>
<div>
<p>I’m a beginner Full Stack Web Developer. My objective is simply to be the best web developer that I
can be and to contribute to the technology industry all that I know and can do. I am a detail
oriented professional with a passion for problem solving. I continually search for ways to expand
and improve my skill set. Recently, I started my journey to be a coder in OSU Boot Camp and this is
my First Webpage using with HTML/CSS.
</p>
<p><br>
<em>Thank You for visiting my WebPage!!</em></p>
</div>
</section>
<!-- portfolio container -->
<section class="page-section" id="work">
<h2>Work</h2>
<div class="flex-container">
<a href="https://shielded-hollows-44120.herokuapp.com/login" target="_blank" class="flex-item project-2">
<div>
<h3>Simple Lead Manager</h3>
<span>Project 2: Back End</span>
</div>
</a>
<a href="https://nlimbu07.github.io/project-1/" target="_blank" class="flex-item project-1">
<div>
<h3>Movie Info</h3>
<span>Project 1: Front End</span>
</div>
</a>
<a href="https://nlimbu07.github.io/horiseon/" target="_blank" class="flex-item horiseon">
<div>
<h3>Horiseon</h3>
<span>HTML/CSS</span>
</div>
</a>
<a href="https://nlimbu07.github.io/robot-gladiators/" target="_blank" class="flex-item robo-gald">
<div>
<h3>Robot Gladiators</h3>
<span>JavaScript/HTML</span>
</div>
</a>
<a href="https://nlimbu07.github.io/run-buddy/" target="_blank" class="flex-item run-buddy">
<div>
<h3>Run Buddy</h3>
<span>HTML/CSS</span>
</div>
</a>
</div>
</section>
<!-- contact -->
<section class="page-section contact" id="contact">
<h2>Contact Me</h2>
<div>
<address>
<a href="tel:+6024726537">602.472.6537</a>
<a href="mailto:nlimbu@yahoo.com">nlimbu@yhoo.com</a>
<a href="https://github.com/nlimbu07" target="_blank">Git Hub</a>
<a href="https://twitter.com" target="_blank">Twitter</a>
<a href="https://www.linkedin.com/" target="_blank">Linkedln</a>
</address>
</div>
</section>
</main>
</body>
</html>