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

CYF-London | Birhan Mesfen | Module-User-Focused-Data | Week 1 #321

Open
wants to merge 9 commits 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
21 changes: 21 additions & 0 deletions Wireframe/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
body{
background-color:orange;
font-family:'Courier New', Courier, monospace;
margin: 0rem;
padding: 0rem;
display: flex;
flex-direction: column;
color: aliceblue;

}
header h1{
color: #000;
padding: 20rem;
text-align: center;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
h2{
color: #000;
font-size: 33;

}
32 changes: 28 additions & 4 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,34 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wireframe</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<header>
<h1> Github</h1>
<p>
GitHub is a developer platform that allows developers to create, store, manage and share their code.
</p>
</header>
<main>
<section class="articles">
<article>
<h2> For what is GitHub used for?</h2>
<p>GitHub is a platform for hosting code that allows for version control and collaboration. It allows you and others to collaborate on projects from anywhere.</p>
<a href="https://blog.hubspot.com/website/what-is-github-used-for">Read more</a>
</article>
<article>
<h2>What is the function of GitHub?</h2>
<p>GitHub hosts Git repositories and provides developers with tools to ship better code through command line features, issues (threaded discussions), pull requests, code review, or the use of a collection of free and for-purchase apps in the GitHub Marketplace.</p>
<a href="https://devmountain.com/blog/what-is-github-and-how-do-you-use-it/">Read more</a>
</article>
<article>
<h2>what is the use of branch in github</h2>
<p>Branches allow you to develop features, fix bugs, or safely experiment with new ideas in a contained area of your repository</p>
<a href="https://www.w3schools.com/git/git_branch.asp">Read more</a>
</article>
</section>
<footer> oct 2024 CYF hub</footer>
</main>
</body>
</html
</html>