-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathdeveloper.html
More file actions
108 lines (102 loc) · 5.78 KB
/
developer.html
File metadata and controls
108 lines (102 loc) · 5.78 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
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="nav.css">
<link rel="stylesheet" href="recommend.css">
<link href='https://fonts.googleapis.com/css?family=Cookie' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css2?family=PT+Sans&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="./images/icon.png" type="image/x-icon">
<title>Developer</title>
</head>
<body>
<div class="header">
<span class='logo'>Concise</span>
<span class='openbtn' onclick="openNav()"><i class="fa fa-bars" aria-hidden="true"></i></span>
<div id="mynavbar" class="navbar">
<div class="navbar-links">
<div class="link-yellow">
<a href='index.html'>
<i class="fa fa-home"></i>Home
</a>
</div>
<div class="link-red">
<a href=javascript:void(0)>
<i class="fa fa-film" aria-hidden="true"></i>Movies
<i class="fa fa-caret-down"></i>
</a>
<ul class="sub-links">
<li><a href="discover_results.html?movie&most-liked&1">Most Liked</a></li>
<li><a href="discover_results.html?movie&highest-grossing&1">Highest grossing</a>
</li>
<li><a href="discover_results.html?movie&select-genres">With genres</a></li>
<li><a href="discover_results.html?movie&select-year">With year</a></li>
</ul>
</div>
<div class="link-green">
<a href=javascript:void(0)>
<i class="fa fa-tv"></i>Tv Shows
<i class="fa fa-caret-down"></i>
</a>
<ul class="sub-links">
<li><a href="discover_results.html?tv&most-liked&1">Most Liked</a></li>
<li><a href="discover_results.html?tv&select-genres">With genres</a></li>
</ul>
</div>
<div class="link-orange">
<a href=javascript:void(0)>
<i class="fa fa-pencil"></i>Recommend
<i class="fa fa-caret-down"></i>
</a>
<ul class="sub-links">
<li><a href="recommend.html?movie">Movie</a></li>
<li><a href="recommend.html?tv">Tv Show</a></li>
</ul>
</div>
<div class="link-blue">
<a href=javascript:void(0)>
<i class="fa fa-info-circle"></i>About
<i class="fa fa-caret-down"></i>
</a>
<ul class="sub-links">
<li><a href="about.html">Concise</a></li>
<li><a href="developer.html">Developer</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="main-content">
<div class="result">
<div class="item">
<div class="poster">
<img src="./images/harshit.jpg" alt="harshit's picture">
</div>
<div class="info">
<div class="main-info" style="font-weight: bold;">
<h3 style="text-align: center;">Hi, I am</h3>
<h2>Harshit Gangwar</h2>
<p>Hope you liked Concise. You can find me on</p>
<p>
<a href="http://harshjoeyit.github.io/"><i style='color: tomato' class="fa fa-globe"></i></a>
<a href="https://www.facebook.com/harshjoeyit"><i style='color: #0439aa' class='fa fa-facebook-square'></i></a>
<a href="https://twitter.com/harshjoeyit"><i style='color: #23befc' class='fa fa-twitter-square'></i></a>
<a href="https://www.linkedin.com/in/harshjoeyit"><i style='color: #0194d8' class='fa fa-linkedin-square'></i></a>
</p>
</div>
<div class="main-info" style="font-weight: bold;">
<p>In case you want to meet me I'll be in</p>
<p><i style='color: #ff7c40' class='fa fa-home'></i>Gandhipuram, Bareilly</p>
<p>OR</p>
<p><i style='color: #272727' class='fa fa-graduation-cap'></i>MNNIT Allahabad, Prayagraj
</p>
</div>
</div>
</div>
</div>
</div>
<script src="nav.js"></script>
</body>
</html>