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

Added a folder under Web Development folder with simple html and css files. #62

Open
wants to merge 1 commit into
base: master
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
1 change: 1 addition & 0 deletions Contributors.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,4 @@ under the appropriate header.
- [Tanya Vedi](https://github.com/tanya-vedi)
- [Apoorva Singh](https://github.com/apoorvasingh17)
- [Sakshi Vij](https://github.com/sakshivij21)
- [Sudiksha Gunturi](https://github.com/SudikshaG)
Binary file added WebDevelopment/Motivational_meme/daenerys.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions WebDevelopment/Motivational_meme/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Poster</title>
<link rel="stylesheet" href="/style.css">

</head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet">
<body>
<div class="poster">
<h1>That moment..</h1>
<img class="image" src="./daenerys.jpeg" alt="dearyon with egg"/>
<p>When you find the perfect rock to throw at someone</p>
</div>
</body>
</html>
25 changes: 25 additions & 0 deletions WebDevelopment/Motivational_meme/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
h1{
text-transform: uppercase;
font-family: "Libre Baskerville", serif;
font-weight: 400;
font-style: normal;
color: white;
}
body{
background-color: black;
color: white;

}
.image{
border:5px solid white;
width: 100%;

}
.poster{
width : 50%;
margin-left: 25%;
text-align:center;



}