-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (85 loc) · 3.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio Website</title>
<link rel="stylesheet" href="sass/main.css">
</head>
<body>
<header id="header">
<div class="container">
<nav>
<img src="images/logo.png" class="logo">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contact Me</a></li>
</ul>
</nav>
</div>
<div class="firstsection">
<div class="left">
<p>Hi, I am <span>Suneel Karki</span></p>
<p>And I am a <span id="element"></span></p>
</div>
<div class="right">
<img id="image-bdy" src="images/img.png">
</div>
</div>
</header>
<main>
<--! about me -->
<section id="about">
<div class="container">
<div class="row">
<div class="about-col-1">
<img src="images/img.jpg">
</div>
<div class="about-col-2">
<h1 class="sub-title">About Me</h1>
<P>Lorem ipsum dolor sit amet consectetur adipisicing elit.
Similique saepe deserunt atque, voluptatem ad beatae!
Qui explicabo eveniet itaque dignissimos,
fuga quae facere debitis autem voluptates aliquam architecto rerum recusandae.
</P>
<div class="tab-titles">
<p class="tab-links active-link" onclick="opentab('skills')">Skill</p>
<p class="tab-links" onclick="opentab('education')">Education</p>
<p class="tab-links" onclick="opentab('experience')">Experience</p>
</div>
<div class="tab-contents active-tab" id="skills">
<ul>
<li><span>UI/UX :</span><br>Designing Web/App interface</li>
<li><span>Web Development :</span><br>Web app Development</li>
<li><span>Python Development :</span><br>Web/Software Developmet</li>
<li><span>Java:</span><br>Web/software Development</li>
</ul>
</div>
<div class="tab-contents" id="education">
<ul>
<li><span>B.E Computer Science(2017-2022) :</span><br>Visveswariya Technological Institute</li>
<li><span>Higher Secondary Level(2014-2016) :</span><br>National Academy of Science and Technology.</li>
<li><span>Secondary Level(-2014) :</span><br>Glee Academy School</li>
</ul>
</div>
<div class="tab-contents" id="experience">
<ul>
<li><span>UI/UX :</span><br>Worked 0n Own Project</li>
<li><span>Web Development :</span><br>Worked 0n Own Project</li>
<li><span>Python Development :</span><br>Worked 0n Own Project</li>
<li><span>Java :</span><br>Worked 0n Own Project</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<--! services -->
</main>
<script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script>
<script src="JS/index.js"></script>
</body>
</html>