Skip to content

Commit

Permalink
Wesbite & Project Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
jatiinyadav committed Oct 21, 2022
1 parent e653cfb commit d89981f
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 14 deletions.
Binary file modified 30DaysOfJavaScript/assets/44.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified 30DaysOfJavaScript/assets/46.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified 30DaysOfJavaScript/assets/49.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 44 - Infinite Scroll/font/sans.ttf
Binary file not shown.
14 changes: 10 additions & 4 deletions 44 - Infinite Scroll/index.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Infinite Scroll</title>
<link rel="stylesheet" href="styles.css">
</head>

<body>
<h1>Infinite Scroll</h1>
<div class="container">
Expand All @@ -18,10 +20,14 @@ <h1>Infinite Scroll</h1>
</div>
</div>
<footer>
<p>
By <a href="https://github.com/alexventuraio">Alex Ventura</a>
</p>
<h3>&#x3c; &#47; &#x3e; with ❤️ by
<a href="https://github.com/alexventuraio">Alex Ventura</a>
<br>
<a href="https://github.com/swapnilsparsh/30DaysOfJavaScript" target="_blank">#30DaysOfJavaScript
</a>
</h3>
</footer>
<script src="app.js"></script>
</body>
</html>

</html>
11 changes: 7 additions & 4 deletions 44 - Infinite Scroll/styles.css
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
@import url("https://fonts.googleapis.com/css?family=Open+Sans&display=swap");

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "sans";
}

@font-face {
font-family: "sans";
src: url(font/sans.ttf);
}
body {
color: #fff;
font-family: 'Open Sans', sans-serif;
font-family: "sans";
font-size: 12px;
background-color: #19172e;
display: flex;
Expand All @@ -32,7 +36,6 @@ h1 {
font-size: 36px;
margin: 30px;
text-align: center;
text-transform: uppercase;
}

/* Items */
Expand Down
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -308,26 +308,26 @@ <h4>Simple Form Validation</h4>
<img src="30DaysOfJavaScript/assets/43.png" alt="Getting Started with APIs" />
<h4>Getting Started with APIs</h4>
</a>
</div>
</div>-->
<div class="item">
<a target="_blank" href="44 - Infinite Scroll/index.html">
<img src="30DaysOfJavaScript/assets/44.png" alt="Infinite Scroll" />
<h4>Infinite Scroll</h4>
</a>
</div>
<div class="item">
<!--<div class="item">
<a target="_blank" href="45 - Chatting App/client/index.html">
<img src="30DaysOfJavaScript/assets/45.png" alt="Chatting App" />
<h4>Chatting App</h4>
</a>
</div>
</div>-->
<div class="item">
<a target="_blank" href="46 - Image Slider/index.html">
<img src="30DaysOfJavaScript/assets/46.png" alt="Image Slider" />
<h4>Image Slider</h4>
</a>
</div>
<div class="item">
<!--<div class="item">
<a target="_blank" href="47 - Caesar Cipher/2_caesar_cipher.html">
<img src="30DaysOfJavaScript/assets/47.png" alt="Caesar Cipher" />
<h4>Caesar Cipher</h4>
Expand All @@ -338,14 +338,14 @@ <h4>Caesar Cipher</h4>
<img src="30DaysOfJavaScript/assets/48.png" alt="Attendance Table" />
<h4>Attendance Table</h4>
</a>
</div>
</div>-->
<div class="item">
<a target="_blank" href="49 - Content Placeholder/index.html">
<img src="30DaysOfJavaScript/assets/49.png" alt="Content Placeholder" />
<h4>Content Placeholder</h4>
</a>
</div>
<div class="item">
<!--<div class="item">
<a target="_blank" href="50 - Country Detail\index.html">
<img src="30DaysOfJavaScript/assets/50.png" alt="Country Detail" />
<h4>Country Detail</h4>
Expand Down

0 comments on commit d89981f

Please sign in to comment.