-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (59 loc) · 2.02 KB
/
Copy pathindex.html
File metadata and controls
69 lines (59 loc) · 2.02 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<title>Sumitra Chhetri</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="topnav" id="myTopnav">
<a href="#home" class="active">Home</a>
<a href="#my-project">Project</a>
<!--<a href="#">Resume</a> -->
<a href="#">Blog</a>
<!--<a href="#">Journey</a> -->
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<div class="container">
<div class="contain">
<img id="profile-image" src="image 1.png">
</div>
<div class="contain">
<h1>Sumitra Chhetri</h1>
<p id="title-text">Software Engineering | Web Development</p>
<p id="training">Training in progress</p>
</div>
</div>
<div>
<h2 id="my-project">My Projects</h2>
<div class="boxes">
<div class="project" id="project-one" src="https://github.com/sumitrac/Library-Landing-page">
<h1>Tribute Page</h1>
<p>Using Html and CSS</p>
</div>
<div class="project" id="project-two">
<h1>Personal Portfolio</h1>
<p>Using Html, CSS and Javescript"</p>
</div>
<div class="project" id="project-three">
<h1>Survey Form</h1>
<p>Using Html and CSS</p>
</div>
</div>
</div>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</body>
</html>