Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6b4b8df

Browse files
committedDec 1, 2024·
Update landing page structure and metadata for improved SEO and branding
Signed-off-by: HAHWUL <[email protected]>
1 parent 81a7001 commit 6b4b8df

File tree

1 file changed

+56
-25
lines changed

1 file changed

+56
-25
lines changed
 

‎docs/index.html

Lines changed: 56 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,39 @@
66
<html lang="en" >
77
<head>
88
<meta charset="UTF-8">
9-
<title>Dalfox</title>
109
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap"><link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css'><link rel="stylesheet" href="./style.css">
10+
11+
<link rel="shortcut icon" href="/favicon.ico">
12+
<title>DalFox | Dalfox is a powerful open-source XSS scanner and utility focused on automation.</title>
13+
<meta property="og:title" content="DalFox" />
14+
<meta property="og:locale" content="en_US" />
15+
<meta name="description" content="Dalfox is a powerful open-source XSS scanner and utility focused on automation." />
16+
<meta property="og:description" content="Dalfox is a powerful open-source XSS scanner and utility focused on automation." />
17+
<link rel="canonical" href="https://dalfox.hahwul.com/" />
18+
<meta property="og:url" content="https://dalfox.hahwul.com/" />
19+
<meta property="og:site_name" content="DalFox" />
20+
<meta property="og:type" content="website" />
21+
<meta name="twitter:card" content="summary" />
22+
<meta property="twitter:title" content="DalFox" />
23+
<script type="application/ld+json">
24+
{"@context":"https://schema.org","@type":"WebSite","description":"Dalfox is a powerful open-source XSS scanner and utility focused on automation.","headline":"DalFox","name":"DalFox","url":"https://dalfox.hahwul.com/"}</script>
25+
26+
<link rel="alternate" type="application/rss+xml" title="DalFox" href="https://dalfox.hahwul.com/feed.xml" />
27+
</head>
28+
29+
30+
<body>
31+
32+
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon.png">
33+
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png">
34+
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png">
35+
<link rel="manifest" href="/images/site.webmanifest">
36+
<link rel="mask-icon" href="/images/safari-pinned-tab.svg" color="#1e1e1f">
37+
<link rel="shortcut icon" href="/images/favicon.ico">
38+
<meta name="msapplication-TileColor" content="#1e1e1f">
39+
<meta name="msapplication-config" content="/images/browserconfig.xml">
40+
<meta name="theme-color" content="#000000">
41+
1142
<style>
1243
/* Start Global Rules */
1344
* {
@@ -55,102 +86,102 @@
5586
}
5687
/* End Global Rules */
5788

58-
/* Start Landing Page */
59-
.landing-page header {
89+
/* Start dalfox-landing Page */
90+
.dalfox-landing-page header {
6091
min-height: 80px;
6192
display: flex;
6293
}
6394
@media (max-width: 767px) {
64-
.landing-page header {
95+
.dalfox-landing-page header {
6596
min-height: auto;
6697
display: initial;
6798
}
6899
}
69-
.landing-page header .container {
100+
.dalfox-landing-page header .container {
70101
display: flex;
71102
align-items: center;
72103
justify-content: space-between;
73104
}
74105
@media (max-width: 767px) {
75-
.landing-page header .container {
106+
.dalfox-landing-page header .container {
76107
flex-direction: column;
77108
justify-content: center;
78109
}
79110
}
80-
.landing-page header .logo {
111+
.dalfox-landing-page header .logo {
81112
color: #aaaaaa;
82113
font-style: italic;
83114
text-transform: uppercase;
84115
font-size: 20px;
85116
}
86117
@media (max-width: 767px) {
87-
.landing-page header .logo {
118+
.dalfox-landing-page header .logo {
88119
margin-top: 20px;
89120
margin-bottom: 20px;
90121
}
91122
}
92-
.landing-page header .links {
123+
.dalfox-landing-page header .links {
93124
display: flex;
94125
align-items: center;
95126
}
96127
@media (max-width: 767px) {
97-
.landing-page header .links {
128+
.dalfox-landing-page header .links {
98129
text-align: center;
99130
gap: 10px;
100131
}
101132
}
102-
.landing-page header .links li {
133+
.dalfox-landing-page header .links li {
103134
margin-left: 30px;
104135
color: #aaaaaa;
105136
cursor: pointer;
106137
transition: .3s;
107138
}
108139
@media (max-width: 767px) {
109-
.landing-page header .links li {
140+
.dalfox-landing-page header .links li {
110141
margin-left: auto;
111142
}
112143
}
113-
.landing-page header .links li:last-child {
144+
.dalfox-landing-page header .links li:last-child {
114145
border-radius: 20px;
115146
padding: 10px 20px;
116147
color: #FFF;
117148
background-color: #6c63ff;
118149
}
119-
.landing-page header .links li:not(:last-child):hover {
150+
.dalfox-landing-page header .links li:not(:last-child):hover {
120151
color: #6c63ff;
121152
}
122-
.landing-page .content .container {
153+
.dalfox-landing-page .content .container {
123154
display: flex;
124155
align-items: center;
125156
justify-content: space-between;
126157
gap: 140px;
127158
min-height: calc(100vh - 80px);
128159
}
129160
@media (max-width: 767px) {
130-
.landing-page .content .container {
161+
.dalfox-landing-page .content .container {
131162
gap: 0;
132163
min-height: calc(100vh - 101px);
133164
justify-content: center;
134165
flex-direction: column-reverse;
135166
}
136167
}
137168
@media (max-width: 767px) {
138-
.landing-page .content .info {
169+
.dalfox-landing-page .content .info {
139170
text-align: center;
140171
margin-bottom: 15px
141172
}
142173
}
143-
.landing-page .content .info h1 {
174+
.dalfox-landing-page .content .info h1 {
144175
color: #aaaaaa;
145176
font-size: 44px;
146177
}
147-
.landing-page .content .info p {
178+
.dalfox-landing-page .content .info p {
148179
margin: 0;
149180
line-height: 1.6;
150181
font-size: 15px;
151182
color: #aaaaaa;
152183
}
153-
.landing-page .content .info button {
184+
.dalfox-landing-page .content .info button {
154185
border: 0;
155186
border-radius: 20px;
156187
padding: 12px 30px;
@@ -159,16 +190,16 @@
159190
color: #FFF;
160191
background-color: #6c63ff;
161192
}
162-
.landing-page .content .image img {
193+
.dalfox-landing-page .content .image img {
163194
max-width: 100%;
164195
}
165-
/* End Landing Page */
196+
/* End dalfox-landing Page */
166197
</style>
167198
</head>
168199
<body>
169200
<!-- partial:index.partial.html -->
170-
<!-- Start Landing Page -->
171-
<div class="landing-page">
201+
<!-- Start dalfox-landing Page -->
202+
<div class="dalfox-landing-page">
172203
<header>
173204
<div class="container">
174205
<a href="/" class="logo"><img src="/images/logo-wide.png" style="width: 120px;"></a>
@@ -191,7 +222,7 @@ <h1>🌙🦊 = XSS</h1>
191222
</div>
192223
</div>
193224
</div>
194-
<!-- End Landing Page -->
225+
<!-- End dalfox-landing Page -->
195226
<!-- partial -->
196227

197228
</body>

0 commit comments

Comments
 (0)
Please sign in to comment.