forked from impactbyte-learn/project-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·115 lines (108 loc) · 3.93 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>M Haidar Hanif | Chief of Magic in Impact Byte</title>
<link
href="https://fonts.googleapis.com/css?family=Caveat+Brush|Fira+Sans+Condensed:400,700"
rel="stylesheet"
/>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<nav id="navigation" class="navigation">
<a href="index.html" class="active">Home</a>
<a href="about/index.html">About</a>
<a href="blog/index.html">Blog</a>
<a href="project/index.html">Project</a>
</nav>
<div id="container" class="container">
<header id="header" class="header">
<h1 class="header-name">M Haidar Hanif</h1>
<h4 class="header-activity">is watching...</h4>
</header>
<main id="content" class="content">
<section id="poster" class="poster">
<img src="images/avengers.jpg" alt="Avengers" />
</section>
<section id="details" class="details">
<div class="details-video">
<iframe
width="400"
height="200"
src="https://youtube.com/embed/TcMBFSGVi1c?controls=0"
>
</iframe>
</div>
<div class="details-description">
<h2 class="title">
<img src="images/avengers-endgame.png" alt="Avengers: Endgame" />
</h2>
<p class="paragraph">
Adrift in space with no food or water, Tony Stark sends a message
to Pepper Potts as his oxygen supply starts to dwindle. Meanwhile,
the remaining Avengers -- Thor, Black Widow, Captain America and
Bruce Banner -- must figure out a way to bring back their
vanquished allies for an epic showdown with Thanos -- the evil
demigod who decimated the planet and the universe.
</p>
<p class="links">
<a
href="https://www.imdb.com/title/tt4154796"
class="button imdb"
>
See in IMDb
</a>
<a href="https://twitter.com/Avengers" class="button twitter">
Follow on Twitter
</a>
</p>
</div>
</section>
</main>
<section class="socials">
<a href="mailto:[email protected]" target="_blank">
<img src="icons/email.svg" alt="Email" />
</a>
<a href="https://google.com/search?q=m+haidar+hanif" target="_blank">
<img src="icons/search.svg" alt="Search" />
</a>
<a href="https://linkedin.com/in/mhaidarhanif" target="_blank">
<img src="icons/linkedin.svg" alt="LinkedIn" />
</a>
<a href="https://facebook.com/mhaidarhanif" target="_blank">
<img src="icons/facebook.svg" alt="Facebook" />
</a>
<a href="https://twitter.com/mhaidarh" target="_blank">
<img src="icons/twitter.svg" alt="Twitter" />
</a>
<a href="https://github.com/mhaidarh" target="_blank">
<img src="icons/github.svg" alt="GitHub" />
</a>
<a href="https://keybase.io/mhaidarh" target="_blank">
<img src="icons/keybase.svg" alt="Keybase" />
</a>
</section>
</div>
<footer id="footer" class="footer">
<section class="footer-credits">
<h2 class="copyright">
Copyright © 2019 M Haidar Hanif
</h2>
<p class="tech">
Made in macOS and Ubuntu, using plain HTML and CSS
</p>
<p class="location">
Built on Earth by a human
</p>
<p class="source-code">
<a href="https://github.com/mhaidarh/mhaidarhanif.com">
Source Code on GitHub
</a>
</p>
</section>
</footer>
</body>
</html>