Skip to content

Commit

Permalink
added files for portfolio project
Browse files Browse the repository at this point in the history
  • Loading branch information
samirgorai authored Nov 1, 2023
1 parent baff8ec commit 295a2c0
Show file tree
Hide file tree
Showing 9 changed files with 107 additions and 0 deletions.
Binary file added assets/images/birthday-invite_samir.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/movie_ranking_samir.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added goal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!-- TODO 1: Create the HTML Boilerplate -->

<!-- TODO 2: Add Your previous projects' HTML into the public folder -->

<!-- TODO 3: Take screenshots of your project previews and add the images to the images folder -->

<!-- TODO 4: Add titles/subtitles etc. -->

<!-- TODO 5: Add a link to the project pages -->

<!-- TODO 6: Add images to show the project previews
HINT for TODO 6: You can use the height attribute set to 200 to make the image smaller:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attr-height -->

<!-- TODO 7: Add the Contact Me and About Me page links -->

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project portfolio</title>
</head>
<body>
<h1>Samir Gorai's Portfolio</h1>
<h2>I am a web developer</h2>
<hr>
<h3><a href="./public/movie-ranking.html">Movie Ranking Project</a></h3>
<img src="./assets/images/movie_ranking_samir.png" height="200" alt="movie_ranking_image" >
<h3><a href="./public/birthday-invite.html">Birthday invite Project</a></h3>
<img src="./assets/images/birthday-invite_samir.png" height="200" alt="bithday_invite">
<hr>
<a href="./public/about.html">About Me</a>
<a href="./public/contact.html">Contact</a>
</body>
</html>
7 changes: 7 additions & 0 deletions public/about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<h1>About Me</h1>
<p>Hello there I am Samir Gorai<br>
I am Learning Web Devlopment Currently <br>
I am having 2 years of Experience n Python Programming Devlopment<br>
let me know if i can work for your Open Sorce Python Projects with minimal/free of cost.<br>
Thank you
</p>
24 changes: 24 additions & 0 deletions public/birthday-invite.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!-- Example image URL -->
<!--https://raw.githubusercontent.com/appbrewery/webdev/main/birthday-cake3.4.jpeg
<!-- Example Google Maps Link -->
<!--https://www.google.com/maps/@35.7040744,139.5577317,3a,75y,289.6h,87.01t,0.72r/data=!3m6!1e1!3m4!1sgT28ssf0BB2LxZ63JNcL1w!2e0!7i13312!8i6656-->

<h1>It's My Birthday</h1>
<h2>on 17th Augest</h2>
<img src="https://media.istockphoto.com/id/1461245017/photo/happy-birthday-party-concept-funny-cute-puppy-dog-border-collie-wearing-birthday-silly.jpg?s=2048x2048&w=is&k=20&c=_y1-My2Q8ncPc0w8qG2hB7iL7QA6drvRuAEvaoARV7s=" height="200"/>
<h3>What To Bring</h3>
<ul>
<li>
Baloons(I love Baloons)
</li>
<li>
Cake(I am realy Good at Eating)
</li>
<li>
An Apetite
</li>

</ul>
<h3>This is where we need to go</h3>
<a href="https://maps.app.goo.gl/3eaMSyPfH9bnpYTx7">Google maps link</a>
8 changes: 8 additions & 0 deletions public/contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<h1>Contact Me</h1>
<p>Email: [email protected]</p>
<h2>Address:</h2>
<p>
Road no 4 Anand Vihar Colony Dimna<br />
Jamshedpur Jharkhand<br />
India<br />
</p>
10 changes: 10 additions & 0 deletions public/movie-ranking.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!-- Write your code below -->
<h1>The best movie according to Samir</h1>
<h2>My top 3 mvies All time</h2>
<hr>
<h3>Iron Man</h3>
<p>I love the concept of he movie</p>
<h3>Tarak Mehta ka Olta Chasma</h3>
<p>mast che</p>
<h3>King Kong</h3>
<p>My First Hollywod movie</p>
22 changes: 22 additions & 0 deletions solution.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>Angela's Portfolio</title>
</head>

<body>
<h1>Angela Yu's Portfolio</h1>
<h2>I'm a Web Developer</h2>
<hr />
<h3><a href="./public/movie-ranking.html">Movie Ranking Project</a></h3>
<img src="./assets/images/movie-ranking.png" height="200" alt="movie ranking project preview"/>
<h3><a href="./public/birthday-invite.html">Birthday Invite Project</a></h3>
<img src="./assets/images/birthday-invite.png" height="200" alt="birthday invite project preview"/>
<hr />
<a href="./public/about.html">About Me</a>
<a href="./public/contact.html">Contact Me</a>
</body>

</html>

0 comments on commit 295a2c0

Please sign in to comment.