-
-
Notifications
You must be signed in to change notification settings - Fork 95
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
LONDON | SHIRIN PANAHIAN | feature/wireframe | WEEK1 #300
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
body{ | ||
font-family: Arial, Helvetica, sans-serif; | ||
padding: 0; | ||
padding-bottom: 60px; | ||
margin: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
.content{ | ||
min-height: 100vh; | ||
padding: 20px; | ||
background-color: #f0f0f0; | ||
} | ||
|
||
header{ | ||
text-align: center; | ||
background-color:#082B51; | ||
color: #ffffff; | ||
padding: 20px; | ||
border-radius: 8px; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
margin-bottom: 40px; | ||
} | ||
|
||
|
||
.read-btn{ | ||
display: inline-block; | ||
padding: 10px 20px; | ||
background-color: #333; | ||
color: white; | ||
text-decoration: none; | ||
border-radius: 5px; | ||
margin-top: 10px; | ||
margin-bottom: 20px; | ||
transition: background-color 0.3s ease; | ||
} | ||
|
||
.read-btn:hover{ | ||
background-color: #555; | ||
} | ||
|
||
|
||
.container{ | ||
width: 100%; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
flex-wrap: wrap; | ||
} | ||
|
||
.container section:first-child{ | ||
|
||
margin-bottom: 40px; | ||
text-align: center; | ||
} | ||
|
||
.container p{ | ||
font-size: 1rem; | ||
color: #777; | ||
} | ||
|
||
.container .column{ | ||
width: 48%; | ||
text-align: center; | ||
} | ||
|
||
.container .column img{ | ||
width: 100%; | ||
height: auto; | ||
margin-bottom: 15px; | ||
border-radius: 8px; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
|
||
} | ||
|
||
.container .column h2{ | ||
font-size: 1.5rem; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.site-footer { | ||
position: fixed; | ||
bottom: 0; | ||
left: 0; | ||
width: 100%; | ||
text-align: center; | ||
padding: 15px; | ||
font-size: 0.9rem; | ||
color: whitesmoke; | ||
background-color: #041C34; | ||
box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.footer-email { | ||
position: absolute; | ||
right: 50px; | ||
top: 50%; | ||
transform: translateY(-50%); /* Center vertically */ | ||
color: whitesmoke; | ||
font-size: 0.9rem; | ||
} | ||
|
||
.footer-email a { | ||
color: whitesmoke; | ||
text-decoration: none; | ||
transition: color 0.3s ease; | ||
} | ||
|
||
.footer-email a:hover { | ||
color: #FF6B6B; | ||
} | ||
|
||
@media (max-width: 768px) { | ||
.container .column { | ||
width: 100%; | ||
margin-bottom: 20px; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,47 @@ | |
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Wireframe</title> | ||
<link rel="stylesheet" href="style.css"> | ||
<title>WireFrame</title> | ||
<link rel="stylesheet" href="css/style.css"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> | ||
|
||
</head> | ||
<body> | ||
<div class="content"> | ||
|
||
<header> | ||
<h1>Learn Git</h1> | ||
<p>Master Git to manage your code, collaborate with teams, and streamline your development process.</p> | ||
</header> | ||
|
||
<main class="container"> | ||
|
||
<section> | ||
<h2>what is git?</h2> | ||
<p>Git is a version control system that helps developers track changes in code, collaborate easily, and manage project versions. It allows branching, committing changes, and reverting to earlier versions. Popular platforms like GitHub use Git for smooth teamwork on coding projects.</p> | ||
<a href="#" class="read-btn">Read More</a> | ||
</section> | ||
|
||
<section class="column"> | ||
<img src="image/img2.png" alt="git-developer"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Suggestion: when adding pictures, putting a good name on it, makes the code cleaner . Another suggestion is to use "alt" to describe the picture, like this: |
||
<h2>why do developers need Git?</h2> | ||
<p>Developers need Git to manage code efficiently, especially in teams. It tracks changes, preventing code conflicts when multiple people work on the same files. Git also allows developers to experiment with new features in branches, merge them later, and easily roll back mistakes. It ensures smooth collaboration and keeps a detailed history of project development.</p> | ||
<a href="#" class="read-btn">Read More</a> | ||
</section> | ||
|
||
<section class="column"> | ||
<img src="image/img3.jpeg" alt="branch-image"> | ||
<h2>what is a branch in Git?</h2> | ||
<p>A branch in Git is a separate line of development that allows you to work on different features or fixes without affecting the main codebase. You can create a branch to isolate your changes, and once you’re done, merge it back into the main branch (often called “main” or “master”). This helps manage parallel WorkStreams and keeps the code organized and stable.</p> | ||
<a href="#" class="read-btn">Read More</a> | ||
</section> | ||
</main> | ||
</div> | ||
<!-- Add your HTML markup here --> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Comments that you no longer need, you may remove it. It will make the code more clean. |
||
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc --> | ||
</body> | ||
<footer class="site-footer"> | ||
<p>Copyright © 2024 Code Your Future. All Rights Reserved.</p> | ||
<span class="footer-email">Email:<a href="mailto:[email protected]" >[email protected]</a></span> | ||
</footer> | ||
</body> | ||
</html | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You forgot to close de tag here: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you could erase this blank line.