-
Notifications
You must be signed in to change notification settings - Fork 0
/
website.html
127 lines (99 loc) · 4.09 KB
/
website.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="web.css">
</head>
<body>
<!-- used header-->
<header>
<nav id="nav">
<img src="logo.png" alt="My logo" id="logo">
<ul id="list">
<li><a href="#about">About</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#Education">Education</a></li>
</ul>
</nav>
</header>
<section id="about">
<div class="container">
<h2 class="titlee">About Me</h2>
<div>
<p>Hey everybody, My name is Nutan Gyawali. I am currently a student of Padmakaya Multiple Campus studying BSc. CSIT. I am in 5th semester.
I have a keen interest in web development. Currently, I have been interested in backend side, however, I plan on continuing to learn both frontend and backend side of web development.
</p>
<p>
My other area of enjoyment are creative writing. It includes my love for poem, proses and stories. I have worked as a freelance writer for a year.
</p>
<p>
You can find my contact details in
<a href="#contact">Contact</a>.
</p>
</div>
</div>
</section>
<section id="portfolio">
<div class="container">
<h2>Portfolio</h2>
<div class="Flappy">
<p class="create">Created a flappy bird using HTML, CSS, Javascript</p>
<p class="name">Flappy bird</p>
<a href="https://nutan-gyawali.github.io/flappybird/" target="_blank">
<img src="flappy.jpg" alt="Flappy Bird" class="img" >
</a>
<a href="https://nutan-gyawali.github.io/flappybird/" target="_blank" class="link">
Play Here
</a>
<a href="https://github.com/Nutan-Gyawali/flappybird" target="_blank" class="link">
Source Code
</a>
</div>
<div class="candy">
<p class="create">Created a Candy Crush using HTML, CSS, Javascript</p>
<p class="name">Candy Crush</p>
<a href="https://nutan-gyawali.github.io/candy-crush/" target="_blank">
<img src="candy.jpg" alt="Candy Crush" class="img">
</a>
<a href="https://nutan-gyawali.github.io/flappybird/" target="_blank" class="link">
Play Here
</a >
<a href=https://github.com/Nutan-Gyawali/candy-crush target="_blank" class="link">
Source Code
</a>
</div>
</div>
</section>
<section id="Education">
<div class="container">
<h2>Education</h2>
<p class="para">SEE <br>
KMC SCHOOL<br>
Passed Year: 2075</p>
<p class="para"> High School <br>
Kathmandu Model Secondary School<br>
Passed Year : 2078</p>
<p class="para"> Bachelors<br>
Padmakaya Multiple Campus<br>
Year of Completion : 2083 (Expected)</p>
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact Me</h2>
<p>You can reach me at: nutangyawali01@gmail.com <br>
Instagram: @nutan_gyawali
</p>
</div>
</section>
<!-- used footer -->
<footer>
<div class="container">
<p>© 2024 My Portfolio. All rights reserved.</p>
</div>
</footer>
</body>
</html>