-
Notifications
You must be signed in to change notification settings - Fork 3
/
about.html
82 lines (79 loc) · 4.69 KB
/
about.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>Breaking Bad | About</title>
<!-- Shared CSS File Styles -->
<link rel="stylesheet" href="css/common.css">
<!-- Page Custom CSS File -->
<link rel="stylesheet" href="css/about.css">
<!-- Favicons -->
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon_io/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon_io/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="192x192" href="./images/favicon_io/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="512x512" href="./images/favicon_io/android-chrome-512x512.png">
<link rel="apple-touch-icon" sizes="180x180" href="./images/favicon_io/apple-touch-icon.png">
</head>
<body>
<div class="container">
<!-- Me -->
<div class="point">
<h2 class="title">Me :</h2>
<div class="description">I'm <strong>Mohamed Aridah</strong> a Front End Developer. This is one of my projects, If you excited to see more projects. Please check out my accounts below & don't forget to follow :
<ul class="social">
<li>
<a href="https://codepen.io/FedLover" target="_blank">
<ion-icon name="logo-codepen" class="social-icon codepen"></ion-icon>
</a>
</li>
<li>
<a href="https://github.com/MohamedAridah/breakingbad" target="_blank">
<ion-icon name="logo-github" class="social-icon github"></ion-icon>
</a>
</li>
</ul>
</div>
</div>
<!-- About API -->
<div class="point">
<h2 class="title">About the API in this website :</h2>
<p class="description">I used <strong>The Breaking Bad API</strong> by <a href="https://breakingbadapi.com/" target="_blank" class="outer-link">Tim Biles</a>. This API provided alot of data about <strong>Breaking Bad</strong> series in addition to <strong>Better Call Saul</strong> series. The majority of the API data is collected from
<a href="https://en.wikipedia.org/wiki/Breaking_Bad" target="blank" class="outer-link">Wikipedia.com
</a> and
<a href="https://breakingbad.wikia.com/wiki/Breaking_Bad_Wiki" target="blank" class="outer-link"> Wikia.com
</a> according to API website. Its seems that API has tooken alot of effort. So many thanks to tim and anyone helped him <span style="color: #FF0000;">❤</span>.</p>
<p class="description">⭐ I will write later about the problems i faced while using and the features i wished it was included in this API. In general it's a very good API.</p>
</div>
<!-- About Images -->
<div class="point">
<h2 class="title">About images in this website :</h2>
<div class="description">
Most of the images is already provided from the API.
<p>
<strong>For Episodes Default Image:</strong>
<a href="https://www.pinterest.com/pin/848858229761079680/?d=t&mt=login" target="_blank" class="outer-link">Pinterest</a>.
</p>
<p>
<strong>For Dead Characters Default Image:</strong>
<a href="https://imgur.com/gallery/dhxV5wl" target="_blank" class="outer-link">thekashmachine</a>.
</p>
</div>
</div>
<!-- Copyright -->
<div class="point">
<h2 class="title">Copyrights :</h2>
<p class="description">I do not own the rights to any material provided in this website. Breaking Bad was created by Vince Gilligan, and originally aired on AMC.
</p>
<p class="description"><strong>Again I DO NOT OWN THE RIGHTS TO ANY OF THESE MATERIALS. </strong> This website is just for fun & practice any material i used i already mention it's owner. Thanks <span style="color: #FF0000;">❤</span>.</p>
</div>
</div>
<!-- Ionicons Icons -->
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
<!-- Main Js File -->
<script src="js/app.js"></script>
</body>
</html>