This is the first certified HTML & CSS course that I'm enrolled in. I've already taken basic HTML class during my schooling.
I'm currently enrolled in Front-end Fundamental course provided by Pirple .
Till now I've learned about basic/fundamental tags of HTML such as <head>, <title>, <body> elements, paragraph tags, heading tags, emphasizing tags, lists and comments, nested lists, image tags, links, <div>, <header>, <footer> etc.
This is a simple web-page containing HTML codes only. It is the Project #1 of the course.
It includes about my favorite book: Maha Ko Ma (महको म) written by famous Nepali artist, comedian, singer (and many more) Madan Krishna Shrestha.It is an autobiographical book that throws light on the unseen and perhaps the harsher side of the life of one of the most eminent entertainers in the Nepali entertainment scene, Madan Krishna Shrestha.
<!DOCTYPE html>
<html lang="en">
<head>
<!--<meta> tag provides metadata about the HTML document.-->
<meta charset="UTF-8">
<!--specifies the character encoding for the HTML document-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My favorite book</title>
</head>
<body>
<h1>Maha Ko Ma (महको म)</h1>
<div>
<figure>
<img src="cover.jpg" alt="cover page of book">
<figcaption><em>photo: cover page (front page)</em></figcaption>
</figure>
</div>
<!--Start of book details section-->
<section>
<h2>Book Details</h2>
<p>
<b>Author: </b> <a href="https://en.wikipedia.org/wiki/Madan_Krishna_Shrestha">Madan Krishna Shrestha</a>
<br>
<b>ISBN: </b> 9789937665339 <br>
<b>Language: </b> Nepali<br>
<b>Genre:</b> Auto Biography <br>
<b>Published: </b> September 2017 <br>
<b>Publisher: </b> <a href="https://www.ratnabook.com/books-by-publisher/4/fine-print-books"> Fine Print
Books</a> <br>
<b>Pages:</b> 295
</p>
</section>
<!--end of book details-->
<!--start of main content-->
<div>
<p>
<strong> “Maha ko Ma”</strong> is an autobiographical book that throws light on the unseen and perhaps the
harsher side of the
life of one of the most eminent entertainers in the Nepali entertainment scene, Madan Krishna Shrestha.
</p>
<p>Better known as a part of the comedic duo “Maha Jodi”, with the other being
<a href="https://en.wikipedia.org/wiki/Hari_Bansha_Acharya"> Hari Bansha Acharya</a> ,
Madan Krishna Shrestha has been able to capture hearts of all Nepalis across the globe with his talented
method acting portrayal in the various stages that he performs on, ranging from theatres to films.
</p>
<p>
More often than not, he can be witnessed performing comedic acts with Hari Bansha Acharya , who is also one
of his closest friends and a vital part of his life. The name of the book comes “Maha ko Ma” from the “MaHa
Jodi”, where ‘Ma’ resembles Madan Shrestha and ‘Ha’ resembles Hari Bansha Acharya. More often than not, he
can be witnessed performing comedic acts with Hari Bansha Acharya , who is also one of his closest friends
and a vital part of his life. The name of the book comes “Maha ko Ma” from the “MaHa Jodi”, where ‘Ma’
resembles Madan Shrestha and ‘Ha’ resembles Hari Bansha Acharya.
</p>
</div>
<!--picture with caption-->
<div>
<figure>
<img src="maha_jodi.jpg" alt="Madan Krishna Shrestha with Hari Bansha Acharya">
<figcaption><em>photo: Madan Krishna Shrestha with Hari Bansha Acharya (Maha Jodi)</em></figcaption>
</figure>
</div>
<div>
<p>
The book shows the behind the scenes struggles faced by Madan Krishna in accomplishing his title as the most
coveted comedian and actor in the Nepali industry. Despite the book having many experiences that have been
shared by Madan Shrestha with Hari Bansha Acharya, the ability of Madan Krishna to depict a completely
different view of the same experiences as written in the autobiography of Hari Bansha, China Harayeko
Manche, without repeating the sentances has garnered praise from critics and fans alike.
</p>
<p>
The struggles faced by him during the initial phases of his half century long acting career and love life
have also been beautifully portrayed in the book. He has written about how his mother’s death in his
childhood affected him, how he ended up in the acting field which was drastically different from his
academic field and how he met the love of his life while working in Sanchaya Kosh in the 1970s. He has also
talked about the challenges he had to face against his marriage with wife, Yasoda Subedi, due to differences
in the couple’s castes.
</p>
The regrets that he carries in his heart towards his wife, his Parkinson’s condition and the struggle of his
wife against rectal cancer have been depicted in this book in a manner that make the readers wonder about how
life is indeed a series of happiness and sorrows. He states how grateful he is to Hari Bansha, who had supported
him throughout the dreadful period of his wife’s illness and how this brought them closer together.
</div>
<!--end of main content-->
<!--starting of references/supporting contents-->
<hr>
<!--horizontal line-->
<h3>Maha ko ma audiobook part 1</h3>
<!--Embedding youtube video-->
<div>
<iframe width="560" height="315" src="https://www.youtube.com/embed/ubRoah3rPm0?start=196" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<!--end of embedding tag-->
<hr>
<!--end of references/supporting contents-->
<br>
<!--start of comment form-->
<div>
<form action="">
<input type="text" placeholder="Enter your comment" multiple>
<button type="submit">Comment</button>
</form>
</div>
<!--end of comment form-->
<br>
<!--for rating-->
<strong>
<label for="">Rate my work.</label>
</strong>
<select>
<option value=""><i></i> Please Select</i></option>
<option value="">⭐</option>
<option value="">⭐⭐</option>
<option value="">⭐⭐⭐</option>
<option value="">⭐⭐⭐⭐</option>
<option value="">⭐⭐⭐⭐⭐</option>
</select>
<br>
<br>
<!--footer-->
<footer>Created By Abiraj Kafle</footer>
<!--End of footer-->
</body>
</html>
Comments
Post a Comment