-
Notifications
You must be signed in to change notification settings - Fork 0
/
jokes-extension.html
89 lines (79 loc) · 3.91 KB
/
jokes-extension.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
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Himanshu Portfolio Website</title>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/a092a50542.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<header>
<!-- <div class="logo">
<img src="./img/logo.png" alt="< dev Himanshu >" />
</div>
<button class="nav-toggle" aria-label="toggle navigation">
<span class="hamburger"></span>
</button>
<nav class="nav">
<ul class="nav__list">
<li class="nav__item"><a href="./index.html" class="nav__link">Home</a></li>
<li class="nav__item">
<a href="./index.html#services" class="nav__link">Services</a>
</li>
<li class="nav__item">
<a href="./index.html#about" class="nav__link">About me</a>
</li>
<li class="nav__item"><a href="./index.html#work" class="nav__link">Work</a></li>
</ul>
</nav> -->
</header>
<section class="intro">
<h1 class="section__title section__title--intro">
<strong>Jokes Extension</strong>
</h1>
<p class="section__subtitle section__subtitle--intro">Live, laugh & Love</p>
<img src="./img/jokes-header.jpg" alt="mine picture" class="intro__img" />
</section>
<div class="portfolio-item-individual">
<img src="./img/jokes.jpg" alt="my Work">
<span><p>
An extension to read jokes. It's available on Chrome, Firefox and Microsoft Edge. It's an open-source project. If you want to contribute create a PR at <a href="https://github.com/Himanshunitrr/Jokes_extension">repository</a>
<ul>
<li>On Chrome as <a href="https://chrome.google.com/webstore/detail/jokes/ippoklecbobjboemkghfbibnpfkfeffb/related?hl=en&pli=1">Jokes.</a></li>
<li>On Firefox as <a href="https://addons.mozilla.org/en-US/firefox/addon/read-jokes/">Jokes.</a></li>
<li>On Microsoft Edge as <a href="https://microsoftedge.microsoft.com/addons/detail/jokes/lmfckgcmhgacobhcbbgmlcmacdipmahc">Jokes.</a></li>
</ul>
</p></span>
</div>
<!-- <div class="portfolio-item-individual">
<img src="./my_work.jpg" alt="my Work">
<span><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis corrupti quidem sequi nemo cumque
quibusdam doloribus ratione praesentium. Porro perspiciatis a eligendi repellat aliquam laudantium?</p>
</span>
</div> -->
<!-- footer -->
<footer class="footer">
<a href="mailto:[email protected]" class="footer__link">[email protected]</a>
<ul class="social-list">
<li class="social-list__item">
<a class="social-list__link" href="http://codeopen.io" target="_blank"><i
class="fab fa-codepen"></i></a>
</li>
<li class="social-list__item">
<a class="social-list__link" href="http://dribbble.com" target="_blank"><i
class="fab fa-dribbble"></i></a>
</li>
<li class="social-list__item">
<a class="social-list__link" href="https://twitter.com" target="_blank"><i
class="fab fa-twitter"></i></a>
</li>
<li class="social-list__item">
<a class="social-list__link" href="https:github.com" target="_blank"><i class="fab fa-github"></i></a>
</li>
</ul>
</footer>
<script src="./JS/index.js"></script>
</body>
</html>