-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
143 lines (143 loc) · 6.24 KB
/
index.html
File metadata and controls
143 lines (143 loc) · 6.24 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Primary Meta Tags -->
<title>Meta Generator</title>
<meta name="title" content="Meta Generator"></meta>
<meta name="description" content="A basic Meta Tag Generator page to help you create and customize HTML meta tags for your website. Improve your SEO and website optimization with ease."></meta>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website"></meta>
<meta property="og:url" content="https://ali5723.github.io/metaGenerator/"></meta>
<meta property="og:title" content="Meta Generator"></meta>
<meta property="og:description" content="A basic Meta Tag Generator page to help you create and customize HTML meta tags for your website. Improve your SEO and website optimization with ease."></meta>
<meta property="og:image" content="https://ali5723.github.io/metaGenerator/image.jpeg"></meta>
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image"></meta>
<meta name="twitter:url" content="https://ali5723.github.io/metaGenerator/"></meta>
<meta name="twitter:title" content="Meta Generator"></meta>
<meta name="twitter:description" content="A basic Meta Tag Generator page to help you create and customize HTML meta tags for your website. Improve your SEO and website optimization with ease."></meta>
<meta name="twitter:image" content="https://ali5723.github.io/metaGenerator/image.jpeg"></meta>
<!-- Optional Meta Tags -->
<meta name="keywords" content="meta tags, meta generator, HTML meta tags, SEO, website optimization, meta tag generator, HTML, web development"></meta>
<meta name="robots" content="index, follow"></meta>
<meta name="content-type" content="text/html; charset=utf-8"></meta>
<meta name="viewport" content="width=device-width, initial-scale=1.0"></meta>
<meta name="author" content="Ali Amen"></meta>
<meta name="revisit-after" content="1"></meta>
<!-- Meta Tags Generated with https://ali5723.github.io/metaGenerator/ -->
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<h1>Meta Generator</h1>
<form onsubmit="printFormData(event)">
<div id="title-div">
<label for="title">Site Title (Characters left: 70)</label>
<br>
<input
type="text"
id="title"
name="title"
maxlength="70"
required
>
</div>
<div id="description-div">
<label for="description">Site Description (Characters left: 150)</label>
<br>
<textarea
id="description"
name="description"
maxlength="150"
required
></textarea>
</div>
<div id="charset-div">
<label for="charset">Charset</label>
<br>
<select id="charset" name="charset" required>
<option value="utf-8">UTF-8</option>
<option value="iso-8859-1">ISO-8859-1</option>
<option value="windows-1252">Windows-1252</option>
</select>
</div>
<div id="keywords-div">
<label for="keywords">Site Keywords (Separate with commas)</label>
<br>
<textarea id="keywords" name="keywords" placeholder="keyword1, keyword2, keyword3"></textarea>
</div>
<div id="url-div">
<label for="url">Site URL</label>
<br>
<input
type="url"
id="url"
name="url"
placeholder="https://www.example.com"
>
</div>
<div id="image-div">
<label for="image">Image URL</label>
<br>
<input
type="url"
id="image"
name="image"
placeholder="https://www.example.com/image.jpg"
>
</div>
<div id="author-div">
<label for="author">Author</label>
<br>
<input type="text" id="author" name="author">
</div>
<div id="language-div">
<label for="language">Language</label>
<br>
<select id="language" name="language">
<option value="0">No Language Tag</option>
<option value="Arabic">Arabic</option>
<option value="English">English</option>
</select>
</div>
<div id="robots-div">
<label for="robots">Robots</label>
<br>
<select id="robots" name="robots">
<option value="index, follow">Index, Follow</option>
<option value="index, nofollow">Index, No Follow</option>
<option value="noindex, follow">No Index, Follow</option>
<option value="noindex, nofollow">No Index, No Follow</option>
</select>
</div>
<div id="revisit-after-div">
<label for="revisit-after">Robots Revisit After(By Days)</label>
<br>
<input
type="number"
id="revisit-after"
name="revisit-after"
min="0"
max="10"
value="0"
>
</div>
<div id="refresh-div">
<label for="refresh">Refresh(By Seconds)</label>
<br>
<input
type="number"
id="refresh"
name="refresh"
min="0"
value="0"
>
</div>
<br>
<input type="submit" value="Generate">
<br>
<hr>
</form>
<textarea id="result" disabled></textarea>
</body>
</html>