Skip to content
This repository has been archived by the owner on Sep 22, 2022. It is now read-only.

first small contribution just added color image thank you!! #10

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
5 changes: 3 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<head charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Green Sydney</title> <!-- Working title ~GotHubs -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<img src="https://media-exp2.licdn.com/media/AAEAAQAAAAAAAAjwAAAAJDEwMTUwNzQ2LWUzZTUtNDUzNC04NDlmLTUyM2ZjZTlkOTBhOQ.jpg" alt="Picture">
<img class= "center" src="https://upload.wikimedia.org/wikipedia/commons/f/f8/Flag_of_Sydney.jpg" alt="Picture">
<h1>Green Sydney!</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
Expand All @@ -26,5 +26,6 @@ <h1>Green Sydney!</h1>
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<h2>I am from India</h2>
</body>
</html>
21 changes: 21 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.center {
display: block;
margin-left: auto;
margin-right: auto;
height: 75px;
width: 75px
}
body {
background: linear-gradient(to top, green, rgba(255, 175, 100, 6));
background-size: 800px 700px;
}
img {
align-items: middle;
}
h1 {
text-align: center;
color: rgba(142,100,62,2);
}
h2 {
text-decoration-color: rgba(255, 175, 100, 6);
}