Skip to content

Commit

Permalink
Merge pull request #25 from RachitGarg-12/github-logo
Browse files Browse the repository at this point in the history
Added Github logo with project repo hyperlink at the top right of the…
  • Loading branch information
goodmanslaugh authored Oct 5, 2022
2 parents 6a030c3 + 97b5b38 commit 9eb97df
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 27 deletions.
60 changes: 33 additions & 27 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,29 +1,35 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Sidejourney</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css"
/>
<link rel="stylesheet" href="style.css" />
<script src="index.js" defer></script>
</head>
<body>
<section class="section">
<div class="container">
<h1 class="title">Hello Sidejourney</h1>
<p class="subtitle">
A website to view github profiles created using
<strong>Bulma</strong>!
</p>
<form id="form">
<input type="text" id="search" placeholder="Search a Github User" />
</form>
<main id="main"></main>
</div>
</section>
</body>
</html>

<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Sidejourney</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css" />
<link rel="stylesheet" href="style.css" />
<script src="index.js" defer></script>
</head>

<body>
<div>
<a href="https://github.com/goodmanslaugh/sidejourney"><img
src="https://user-images.githubusercontent.com/115019431/194047083-b641615a-53a1-4a48-b2e0-20a0b06eb91a.png"
alt=""></a>
</div>
<section class="section">
<div class="container">
<h1 class="title">Hello Sidejourney</h1>
<p class="subtitle">
A website to view github profiles created using
<strong>Bulma</strong>!
</p>
<form id="form">
<input type="text" id="search" placeholder="Search a Github User" />
</form>
<main id="main"></main>
</div>
</section>
<script src="index.js" defer></script>
</body>

</html>
6 changes: 6 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
img {
position: absolute;
top: 0px;
right: 0px;
cursor: pointer;
}

* {
box-sizing: border-box;
Expand Down

0 comments on commit 9eb97df

Please sign in to comment.