-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
151 lines (143 loc) · 4.83 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!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" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css"
integrity="sha512-PgQMlq+nqFLV4ylk1gwUOgm6CtIIXkKwaIHp/PAIWHzig/lKZSEGKEysh0TCVbHJXCLN7WetD8TFecIky75ZfQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="./assets/packages/swiper/swiper-bundle.min.css"
/>
<link rel="stylesheet" href="css/navbar.css" />
<link rel="stylesheet" href="css/home.css" />
<title>Home| Portfolio</title>
<style>
.preloader {
background: url("./assets/images/black_paper/black_paper.png");
background-repeat: repeat;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
z-index: 300;
transition: all 0.3s ease-in-out;
}
.preloader.close {
opacity: 0;
pointer-events: none;
}
</style>
</head>
<body>
<div class="preloader" id="preloader">
<img src="./assets/videos/main_logo.gif" alt="main logo" height="300px" />
</div>
<!-- navbar of the page -->
<header class="container">
<!-- navbar wide screen visible part -->
<div class="dark-overlay"></div>
<nav class="navbar">
<div class="navbar-wrapper">
<a href="#" class="navbar-brand"
><img src="./assets/images/S-Logo.png" alt="Navbar Logo"
/></a>
<button class="navbar-toggler" type="button" id="navbar-toggler">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<!-- navbar collapse part -->
<div class="navbar-collapse" id="navbarcollapse">
<ul class="navbar-nav">
<li class="nav-item">
<a href="./" class="nav-link" data-name="NUTSHELL">NUTSHELL</a>
</li>
<li class="nav-item">
<a href="./projects" class="nav-link" data-name="PROJECTS"
>PROJECTS</a
>
</li>
<li class="nav-item">
<a href="./collectibles" class="nav-link" data-name="COLLECTIBLES"
>COLLECTIBLES</a
>
</li>
<li class="nav-item">
<a href="./connect" class="nav-link" data-name="CONNECT">CONNECT</a>
</li>
</ul>
</div>
</nav>
</header>
<!-- main section of the page -->
<main class="main container">
<div class="home_container">
<div class="content_overlay_sm_device"></div>
<div class="home_container_content">
<h1 class="first_name">SHAFAAT</h1>
<h1 class="last_name">KHAN</h1>
<p class="informations">
VISUALIZER | UI/UX DESIGNER | THEATRE PERFORMER
</p>
<div class="body_footer">
<p>
<span>©</span>
Studio Shafaat 2021 | Developed by
<a
href="https://www.facebook.com/udoyrahman980"
class="text_hover"
target="_blank"
rel="Developer"
>
Udoy Rahman</a
>
</p>
</div>
</div>
<div class="home_container_image">
<img src="./assets/images/Shafaat Khan.png" alt="Shafaat Khan" />
</div>
</div>
</main>
<!-- footer end of the page -->
<footer class="container">
<div class="footer">
<p class="developer">
<span>©</span>
Studio Shafaat 2021 | Developed by
<a
href="https://www.facebook.com/udoyrahman980"
class="text_hover"
target="_blank"
rel="Developer"
>Udoy Rahman</a
>
</p>
<!-- <p class="copyright"><span>©</span> Studio Shafaat | 2021</p> -->
</div>
</footer>
<!-- scripts -->
<script src="./js/script.js"></script>
</body>
</html>