-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (99 loc) · 4.81 KB
/
index.html
File metadata and controls
99 lines (99 loc) · 4.81 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rishit's Blog</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<a class="navbar-brand" href="#">Rishit Blogs</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#categories">Categories</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
</ul>
</div>
</nav>
<header>
<h1>Rishit Blogs</h1>
<p id="update">Updated by Rishit on <span id="myDate"></span></p>
</header>
<div class="foll">
<p id="ftext">Follow me on</p>
<a href="https://www.instagram.com/rishitkothari/">
<i class="fab fa-instagram fa-2x"></i>
</a>
</div>
<div class="head-1">
<p id="deals">Best Deals to get this Rainy Season...</p>
</div>
<section id="categories">
<div class="container">
<a href="electronics.html">
<img src="https://cdn.pixabay.com/photo/2017/01/22/12/07/imac-1999636_960_720.png" alt="Electronics" id="tech"><br>
<label for="Electronics">Electronics</label>
</a>
<a href="lifestyle.html">
<img src="https://image.freepik.com/free-photo/unbranded-modern-sporty-shoes-sneakers-white-isolated_120794-337.jpg" alt="Shoes" id="shoes"><br>
<label for="Lifestyle">Lifestyle</label>
</a>
</div>
</section>
<section id="blogs">
<div class="write">
<h2>Today's Blog</h2>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Possimus ut voluptas expedita libero velit voluptatibus assumenda, repudiandae distinctio recusandae, quas, adipisci veniam et eum tenetur sed. Deserunt rerum minima dolor?</p>
</div>
</section>
<hr>
<section id="about">
<div class="about">
<h3>About Me</h3>
<p id="me">
My name is Rishit. I'm technology enthusiast, learner and part-time Entrepreneur. I'm constantly trying to develop my skills.
</p>
</div>
</section>
<section id="last-one">
<footer class="copyright">
<p>© 2020 Developed by Keyul Jain</p>
</footer>
<div class="follow">
<a href="https://www.instagram.com/keyuljain/" id="insta">
<i class="fab fa-instagram fa-2x"></i>
</a>
<a href="https://github.com/KeyulJain" id="git">
<i class="fab fa-github fa-2x"></i>
</a>
<a href="https://www.linkedin.com/in/keyul-jain-2b8291198/" id="linked">
<i class="fab fa-linkedin fa-2x"></i>
</a>
<a href="https://twitter.com/keyuljain" id="twit">
<i class="fab fa-twitter fa-2x"></i>
</a>
<a href="https://www.facebook.com/profile.php?id=100007707257489" id="fb">
<i class="fab fa-facebook fa-2x"></i>
</a>
</div>
</section>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/01b9c206b4.js" crossorigin="anonymous"></script>
<script src="main.js"></script>
</body>
</html>