-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
82 lines (73 loc) · 3.07 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!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>50 Projects 50 Days</title>
<link rel="stylesheet" href="assets/css/styles.css" />
<script src="https://kit.fontawesome.com/3da1a747b2.js" crossorigin="anonymous"></script>
</head>
<body>
<nav class="main-nav">
<div class="container">
<picture>
<source srcset="/assets/images/logo.png" media="(min-width: 700px)" />
<img class="logo" src="/assets/images/logo.png" alt="" />
</picture>
<ul>
<li><a href="/">Home</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#about">About</a></li>
</ul>
</div>
</nav>
<header class="showcase bg-primary">
<div class="container">
<h2>50 Projects in 50 Days</h2>
<h1>50 Mini Web Projects using Vannila HTML, CSS & Javascript</h1>
<p>
Credits: <a href="https://www.udemy.com/course/50-projects-50-days/">50 Projects 50 Days by</a>
<b>
<a href="https://www.youtube.com/traversymedia">Brad Traversy</a> &
<a href="https://www.youtube.com/florinpop">Florin Pop</a>
</b>
</p>
</div>
</header>
<section id="projects" class="projects"></section>
<section class="about" id="about">
<div class="container">
<div class="about-a">
<div>
<h2>About The Projects</h2>
<p>
50 Mini Web Projects using Vannila HTML, CSS and Javascript.
Every project is different and involves fundamental concepts of HTML, CSS and Javascript. All
the Projects are responsive.
<br>
Concepts I learnt includes-
<ul style="text-align: left;">
<li>1. Webpage Layout Using HTML</li>
<li>2. CSS Stylings</li>
<li>3. Responsive Design</li>
<li>4. Key CSS Concepts like Flex, transform, transition, keyframes, etc</li>
<li>5. DOM Manipulations using Javascript</li>
<li>6. Fetch APIs/Axios</li>
<li>7. Array methods - map(), filter(), reduce(), etc</li>
</p>
<p></p>
</div>
<a class="repo" href="https://github.com/pranshukas/50-Projects-50-Days" target="_blank">
<i class="fab fa-github fa-4x"></i>
<p>Github Repo For All Projects</p>
</a>
</div>
</div>
</section>
<footer>
Made With ❤️ by <a href="https://github.com/pranshukas">Pranshu Kashyap</a>
</footer>
<script src="assets/js/script.js"></script>
</body>
</html>