-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutme.html
94 lines (68 loc) · 3.05 KB
/
aboutme.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About me</title>
<link rel="stylesheet" href="styleme.css">
</head>
<body>
<div class="aboutmeclass">
<h1>About Nirmal Silwal</h1>
<p id="aboutmeid">
My name is Nirmal Silwal. I am from <b>Nepal.</b> I am passionate about <b>Software Development & AI.</b> I
have around year experience in <b>Deep learning, Python</b> and <b>AWS.</b>
</p>
<br>
<h2>My Classes This Quarter</h2>
<ul>
<li>CS390: Fundamental Programming Practices</li>
<li>CS401: Modern Programming Practices</li>
<li>CS472: Web Programming</li>
<li>CS544: Enterprise Architecture</li>
<li>CS545: Web Application Architecture</li>
<li>CS435: Algorithms</li>
</ul>
</div>
<h2>My Favorite Books</h2>
<i>(I usually listen to the audiobooks. I read less.)</i>😀
<ol type="1" id="bknameid">
<li >The Obstacle Is the Way - Book by Ryan Holiday <a
href="https://www.goodreads.com/book/show/18668059-the-obstacle-is-the-way" >(goodreads
rating)</a></li>
<li >Manifest Now - Book by Idil Ahmed <a
href="https://www.goodreads.com/book/show/40659661-manifest-now" >(goodreads review)</a>
</li>
<li >You Can Heal Your Life - Book by Louise Hay <a
href="https://www.goodreads.com/book/show/129603.You_Can_Heal_Your_Life" >(goodreads
review)</a></li>
</ol>
<h2>My Moods</h2>
...when I am happy<img src="image/mood1.jpg" height="220" width="450" alt = "first mood image">
... when I am sad<img src="image/mood2.jpeg" height="220" width="250" alt = "second mood image">
<h2>Fun Facts About My Neighbors</h2>
<ul>
<li>Ananda KC: Very <i>curious</i> guy, he loves mechanical devices.</li>
<li>Ashish Pokhrel: Loves playing <i>Guitar.</i></li>
</ul>
<footer >
<div style="background-color: #d5dbe1;">
<address>
© Nirmal Silwal<br>
<a href="mailto:nsilwal@miu.edu"> nsilwal@miu.edu </a> <br>
Maharishi International University <br>
Address: 1000 N. 4th St, Fairfield, IA 52557, USA <br>
</address>
<p>
<a href="http://validator.w3.org/" target="_blank">
<img src="https://mumstudents.org/cs472/2013-09/images/w3c-html.png" style="float:right" alt="html validator">
</a>
<a href="http://jigsaw.w3.org/css-validator/" target="_blank">
<img src="https://mumstudents.org/cs472/2013-09/images/w3c-css.png" style="float:right" alt="CSS validator">
</a>
</p>
</div>
</footer>
</body>
</html>