Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

first commit #54

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
86 changes: 86 additions & 0 deletions SubmittedAssignments/Mahesh_Bhosle/01_Card_TopImage/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">

</head>

<body >

<!-- Card - Image Top -->
<div class="card text-center bg-light" style="width: 500px;">
<!-- Image -->
<img src="city.jpg" class="card-img-top img-fluid" alt="Placeholder image">

<!-- Card Header -->
<div class="card-header">
Featured
</div>
<!-- Card Body -->
<div class="card-body">
<!-- Card Header -->
<h5 class="card-title"> Londan City </h5>
<!-- Card Body Content -->
<div class="card-text">
<p>Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<p>Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<!-- Card Footer -->
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>

</div>

<ul class="list-group list-group-flush">
<li class="list-group-item">An item</li>
<li class="list-group-item">A second item</li>
<li class="list-group-item">A third item</li>
</ul>

<div class="card-body">

<!-- Card Links -->
<div class="mb-3">
<a href="#" class="card-link">
<span>Facebook</span>
<span class="bi bi-facebook"></span>
</a>
<a href="#" class="card-link">
<span>Twitter</span>
<span class="bi bi-twitter"></span>
</a>
<a href="#" class="card-link">
<span>LinkedIn</span>
<span class="bi bi-linkedin"></span>
</a>
</div>

<!-- Card Buttons -->
<div class="mb-3">
<a href="#" class="btn btn-outline-primary ">
<span>Facebook</span>
<span class="bi bi-facebook"></span>
</a>
<a href="#" class="btn btn-outline-primary">
<span>Twitter</span>
<span class="bi bi-twitter"></span>
</a>
<a href="#" class="btn btn-outline-primary">
<span>LinkedIn</span>
<span class="bi bi-linkedin"></span>
</a>
</div>
</div>
<div class="card-footer text-body-secondary">
2 days ago
</div>
</div>

</body>

</html>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
89 changes: 89 additions & 0 deletions SubmittedAssignments/Mahesh_Bhosle/02_Card_TBottomImage/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">

</head>

<body>

<!-- Card - Image Top -->
<div class="card text-center" style="width: 400px;">

<!-- Card Header -->
<div class="card-header">
Featured
</div>
<!-- Card Body -->
<div class="card-body">
<!-- Card Header -->
<h5 class="card-title">Londan City</h5>
<!-- Card Body Content -->
<div class="card-text">
<p>Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<p>Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<!-- Card Footer -->
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>

</div>

<ul class="list-group list-group-flush">
<li class="list-group-item">An item</li>
<li class="list-group-item">A second item</li>
<li class="list-group-item">A third item</li>
</ul>

<div class="card-body">

<!-- Card Links -->
<div class="mb-3">
<a href="#" class="card-link">
<span>Facebook</span>
<span class="bi bi-facebook"></span>
</a>
<a href="#" class="card-link">
<span>Twitter</span>
<span class="bi bi-twitter"></span>
</a>
<a href="#" class="card-link">
<span>LinkedIn</span>
<span class="bi bi-linkedin"></span>
</a>
</div>

<!-- Card Buttons -->
<div class="mb-3">
<a href="#" class="btn btn-primary">
<span>Facebook</span>
<span class="bi bi-facebook"></span>
</a>
<a href="#" class="btn btn-primary">
<span>Twitter</span>
<span class="bi bi-twitter"></span>
</a>
<a href="#" class="btn btn-primary">
<span>LinkedIn</span>
<span class="bi bi-linkedin"></span>
</a>
</div>
</div>

<div class="card-footer text-body-secondary">
2 days ago
</div>

<!-- Image -->
<img src="city.jpg" class="card-img-bottom" alt="Placeholder image">

</div>

</body>

</html>
94 changes: 94 additions & 0 deletions SubmittedAssignments/Mahesh_Bhosle/03_Card_leftImage/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@

<style>
img{
filter: grayscale(0);
}
img:hover{
filter: grayscale(1.5);
}
</style>

<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">




<!-- Card - Image Left -->
<div class="card" style="width: 600px;">
<div class="row">
<!-- Image -->
<div class="col-md-6">
<img src="london.jpg" class="card-img img-fluid my-4 ms-2" alt="Placeholder image">

</div>

<!-- Card - Image Left -->
<div class="col-md-6">
<!-- Card Body -->
<div class="card-body">
<!-- Card Header -->
<h5 class="card-title">London City</h5>
<!-- Card Body Content -->
<div class="card-text">
<p>Some quick example text to build on the card title and make up the bulk of the card's
content.
</p>
<p>Some quick example text to build on the card title and make up the bulk of the card's
content.
</p>
</div>
<!-- Card Footer -->
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>

</div>

<ul class="list-group list-group-flush">
<li class="list-group-item">An item</li>
<li class="list-group-item">A second item</li>
<li class="list-group-item">A third item</li>
</ul>

<div class="card-body">

<!-- Card Links -->
<div class="mb-3">
<a href="#" class="card-link">
<span>Facebook</span>
<span class="bi bi-facebook"></span>
</a>
<a href="#" class="card-link">
<span>Twitter</span>
<span class="bi bi-twitter"></span>
</a>
<a href="#" class="card-link">
<span>LinkedIn</span>
<span class="bi bi-linkedin"></span>
</a>
</div>

<!-- Card Buttons -->
<div class="mb-3">
<a href="#" class="btn btn-primary">
<span>Facebook</span>
<span class="bi bi-facebook"></span>
</a>
<a href="#" class="btn btn-primary">
<span>Twitter</span>
<span class="bi bi-twitter"></span>
</a>
<a href="#" class="btn btn-primary">
<span>LinkedIn</span>
<span class="bi bi-linkedin"></span>
</a>
</div>
</div>
</div>

</div>
</div>

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
94 changes: 94 additions & 0 deletions SubmittedAssignments/Mahesh_Bhosle/04_Card_RightImage/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
<style>
.photo{
transition: all 0.5s;
}
.photo:hover{
transform: scale(1.05);

}

</style>



<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">




<!-- Card - Image Right -->
<div class="card" style="width: 600px;">
<div class="row">
<!-- Card - Image Right -->
<div class="col-md-6">
<!-- Card Body -->
<div class="card-body">
<!-- Card Header -->
<h5 class="card-title">Card title</h5>
<!-- Card Body Content -->
<div class="card-text">
<p>Some quick example text to build on the card title and make up the bulk of the card's
content.
</p>
<p>Some quick example text to build on the card title and make up the bulk of the card's
content.
</p>
</div>
<!-- Card Footer -->
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>

</div>

<ul class="list-group list-group-flush">
<li class="list-group-item">An item</li>
<li class="list-group-item">A second item</li>
<li class="list-group-item">A third item</li>
</ul>

<div class="card-body">

<!-- Card Links -->
<div class="mb-3">
<a href="#" class="card-link">
<span>Facebook</span>
<span class="bi bi-facebook"></span>
</a>
<a href="#" class="card-link">
<span>Twitter</span>
<span class="bi bi-twitter"></span>
</a>
<a href="#" class="card-link">
<span>LinkedIn</span>
<span class="bi bi-linkedin"></span>
</a>
</div>

<!-- Card Buttons -->
<div class="mb-3">
<a href="#" class="btn btn-primary">
<span>Facebook</span>
<span class="bi bi-facebook"></span>
</a>
<a href="#" class="btn btn-primary">
<span>Twitter</span>
<span class="bi bi-twitter"></span>
</a>
<a href="#" class="btn btn-primary">
<span>LinkedIn</span>
<span class="bi bi-linkedin"></span>
</a>
</div>
</div>
</div>
<!-- Image -->
<div class="col-md-6 my-4 photo">
<img src="london.jpg" class="card-img pe-2 " alt="Placeholder image">
</div>
</div>
</div>

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading