-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
185 lines (163 loc) · 5.49 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<!DOCTYPE html>
<!--
To change the theme, change the class on the html tag below to one of:
- theme-auto: Automatically switches based on user's system preferences
- theme-light: Forces light theme
- theme-dark: Forces dark theme
-->
<html class="theme-auto" lang="en">
<!-- Update`class="theme-auto" with your preference -->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Page Title - Change this to your name/brand (50-60 characters recommended) -->
<title>Zeeshan</title>
<link rel="icon" href="/littlelink/images/favicon.ico">
<!-- Update this with your own favicon -->
<!-- Meta Description - Write a description (150-160 characters recommended) -->
<meta
name="description"
content="Replace this with your own, this appears in search results and when sharing."
/>
<!-- Keywords -->
<meta name="keywords" content="your name, industry, and specialties" />
<!-- Canonical URL - Helps prevent duplicate content issues -->
<meta rel="canonical" href="https://yourwebsite.com" />
<!-- Author Information -->
<meta name="Author" content="Md Zeeshan" />
<!-- Stylesheets -->
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/brands.css" />
</head>
<body>
<div class="container">
<div class="column">
<!--
By default, the Avatar is rounded. Use the following:
- avatar--rounded: Automatically rounds the image
- avatar--soft: Slightly rounds the image
- avatar--none: Removes any rounding
Be sure to replace the src with your own image path and update the alt text
-->
<img
class="avatar avatar--rounded"
src="images/minepicturewithcameraprofilepicture.png"
srcset="images/minepicturewithcameraprofilepicture.png 2x"
alt="LittleLink"
/>
<!-- Replace with your name or brand -->
<h1>
<div>Md Zeeshan</div>
<!-- Add a short description about yourself or your brand -->
</h1>
<p>An effective generalist.</p>
<!-- All your buttons go here -->
<div class="button-stack" role="navigation">
<!-- Default LittleLink -->
<!-- WhatsApp -->
<a
class="button button-whatsapp"
href="https://dub.sh/whatsappprofile"
target="_blank"
rel="noopener"
role="button"
><img
class="icon"
aria-hidden="true"
src="images/icons/whatsapp.svg"
alt="WhatsApp Logo"
/>> Message Me</a
>
<!-- Generic Email Alt -->
<a
class="button button-default"
href="mailto:[email protected]"
target="_blank"
rel="noopener"
role="button"
><img
class="icon"
aria-hidden="true"
src="images/icons/generic-email-alt.svg"
alt="Email Icon"
/>Email Me</a
>
<!-- Behance -->
<a
class="button button-behance"
href="https://dub.sh/behanceprofile"
target="_blank"
rel="noopener"
role="button"
><img
class="icon"
aria-hidden="true"
src="images/icons/behance.svg"
alt="Behance Logo"
/>Behance</a
>
<!-- Dribbble -->
<a
class="button button-dribbble"
href="https://dub.sh/dribbbleprofile"
target="_blank"
rel="noopener"
role="button"
><img
class="icon"
aria-hidden="true"
src="images/icons/dribbble.svg"
alt="Dribbble Logo"
/>Dribbble</a
>
<!-- Unsplash -->
<a
class="button button-unsplash"
href="https://dub.sh/unsplashprofile"
target="_blank"
rel="noopener"
role="button"
><img
class="icon"
aria-hidden="true"
src="images/icons/unsplash.svg"
alt="Unsplash Logo"
/>Unsplash</a
>
<!-- Instagram -->
<a
class="button button-instagram"
href="https://dub.sh/instagramprofile"
target="_blank"
rel="noopener"
role="button"
><img
class="icon"
aria-hidden="true"
src="images/icons/instagram.svg"
alt="Instagram Logo"
/>Instagram</a
>
<!-- LinkedIn -->
<a
class="button button-linked"
href="https://dub.sh/Iinkedinprofile"
target="_blank"
rel="noopener"
role="button"
><img
class="icon"
aria-hidden="true"
src="images/icons/linkedin.svg"
alt="LinkedIn Logo"
/>LinkedIn</a
>
<!-- Feel free to add your own footer information, including updating `privacy.html` to reflect how your LittleLink fork is set up -->
<footer>
<p>Copyright © 2021 - 2025 Md Zeeshan. All rights reserved.</p>
</footer>
</div>
</div>
</body>
</html>