-
Notifications
You must be signed in to change notification settings - Fork 1
/
home.html
74 lines (62 loc) · 3.57 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Page Title -->
<title>My Page</title>
<!-- Metadata (data about page data) about character encoding -->
<meta charset="UTF-8">
<!-- Letting browser know website is to be scaled 1x by default to look good on all screens -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=yes">
<!-- Setting Page Theme Color, some browsers use it to change tab color accordingly -->
<meta name="theme-color" content="#000">
<!-- Setting Page Description -->
<meta name="description" content="My Personal Website">
<!-- Setting Page Icon -->
<link rel="icon" href="uploads/images/MyLogo.svg" type="image" sizes="16x16 32X32" />
<!-- Page Redirection with <meta> tag -->
<meta http-equiv="refresh" content="2; url=http://git-harshit.github.io"> <!-- content value specifies delay in seconds -->
<!-- Using Google Fonts, if failed to load via script will throw an error in console -->
<link href="https://fonts.googleapis.com/css2?family=Noticia%20Text&family=Text+Me+One" rel="stylesheet">
<!-- Material Icons, compatible with materialize.css -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Common CSS file for all webpages -->
<link rel="stylesheet" href="uploads/css/common-stylesheet.css" />
</head>
<body>
<!-- <nav class="nav nav-wrapper navbar-nav sticky-top navbar-dark bg-dark">
<a class="brand-logo">HG</a>
<a data-target="mobile-sidebar" class="sidenav-trigger"><i class="material-icons">menu</i></a>
<ul class="right hide-on-med-and-down ml-auto">
<li class="nav-item"><a href="/">Home</a></li>
<li class="nav-item"><a href="about.html">About</a></li>
<li class="nav-item"><a href="feedback.html">Feedback</a></li>
</ul>
<div class="sidenav" id="mobile-sidebar">
<ul>
<li class="nav-item"><a href="/">Home</a></li>
<li class="nav-item"><a href="about.html">About</a></li>
<li class="nav-item"><a href="feedback.html">Feedback</a></li>
<li class="nav-item">
<div class="divider"></div>
</li>
<li class="nav-item">
<div class="social-links">
<a class="social-link" id="link-github" href="https://github.com/Git-Harshit" target="_blank" title="GitHub"><i class="fa fa-github"></i></a>
<a class="social-link" id="link-linkedin" href="https://www.linkedin.com/in/harshit-gupta-" target="_blank" title="LinkedIn"><i class="fa fa-linkedin"></i></a>
<a class="social-link" id="link-mail" href="mailto:askharshitgupta@gmaill.com" title="Mail"><i class="fa far fa-envelope"></i></a>
</div>
</li>
</ul>
</div>
</nav> -->
<!-- Top Section (part) of page -->
<header id="top_section">
<h1>Please wait, you are being redirected</h1>
<p>... to the <a href="/">home page!</a></p>
</header>
<!-- Linking common JS file, programmed for all pages in this project -->
<script src="uploads/js/common-script.js"></script>
<!-- Page Specfic JS File -->
<script src="uploads/js/index-script.js"></script>
</body>
</html>