-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
125 lines (120 loc) · 3.94 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
<!DOCTYPE htnl>
<html lang="en">
<head>
<title>99update</title>
<link href="style.css" type="text/css"rel="stylesheet"/>
</head>
<body>
<div class="navigation-bar">
<nav>
<strong>
<table class="table">
<tr>
<td><a href="/storage/emulated/0/code//html/home-page/video.html">video</a></td>
<td><a href="/storage/emulated/0/code/html/home-page/music.html">music</a></td>
<td><a href="/storage/emulated/0/code/html/home-page/gallery.html">gallery</a></td>
<td><a href="/storage/emulated/0/code/html/home-page/news.html">news</a></td>
</tr>
</table>
</strong>
</nav>
</div>
<form type="search">
<div class=mysearch>
<input type="search" id="mySearch" name="q"
placeholder="artist, author, tittle.."
minlenght="4"
maxlenght="30"
required=""
autocomplete="yes"
aria-label=" Search through site content "
size="25" height="20">
<span class="validity">
</span>
<button >Search </button >
</div>
</form >
<h4>TRENDINGS:</h4>
<!--
hint for an article posting here!.
SAMPLE.....
<article>
<a href="/storage/sdcard0/code/
/html/home-page/video/music-video/.html">
<img src="/storage/sdcard0/code/image/.png"
width="50" height="50">
: whatch video
</a>
</article>
<article>
-->
<p><strong><i>Videos...</i></strong</p>
<p><strong><i>Musics...</i></strong></p>
<p><strong><i>Galleries...</i></strong</p>
<p><strong><i>News...</i></strong</p>
<h4><em>NOTE:</em></h4>
<p>This site is under construction, for complains
and other observation, please we will
appreciate if you
comment. <strong><i>(feel free to say
anything! your entertainment
is our
high priority)</i></strong>
</p>
<h4>please comment to
the email below.
</h4>
<div class="container">
<form id="form"action="/torage/emulated/0/code/html/my-project.html"
method="POST">
<label for="Name">Name:
</label>
<input type="text" id="Name" name="" placeholder="maxwell" required="must">
<br>
<label for="email">Email:
</label>
<input type="email" id="email" name=""placeholder="example@email.com" required="djdh">
<label for="textarea">Comment:
<textarea id="textarea"rows="4" cols="23" maxlenght="10"
placeholder="text goes here" required="opp">
</textarea>
<input type="submit" value="send">
</form>
</div>
<div id="foot">
<h4><i>Do connect with us on:</i>
</h4>
<span class="icons">
<a href="https://www.facebook.com"target="-self"><img src="Facebook.png" height="70px" width="70"></a>
<a href="https://www.twitter.com"target="-self" ><img src="Twitter.png" height="70px" width="70px"></a>
<a href="https://www.instagram.com"target="-self"><img src="Instagram.png" height="70px" width="70px"></a>
<a href="https://www.whatsapp.com" target="-self"><img src="Whatsapp.png" height="70px" width="70px"></a>
<a href="https://www.youtube.com" target="-self"><img src="Youtube.png" height="70px" width="70px"></a>
</span>
<ul>
<li><a href="/storage/emulated/0/code/html/about-us.html"target="_self">About us</a></li>
<li><a href="/storage/emulated/0/code/html/promotion.html">Promotion</a></li>
<li><a href="/storage/emulated/0/code/html/privacy-policy.html">Policy privacy</a></li>
<li><a href="/storage/emulated/0/code/html/advertisement.html">Advertisement</a></li>
</ul>
like<button id="toggle-like" onclick="toggleL()"> 0</button>
dislike<button id="toggle-dislike" onclick="toggleD()">0</button>
<script>
let toggleLike = document.getElementById('toggle-like');
let valueI =0;
function toggleL(){
valueI ++;
toggleLike.innerHTML=valueI;
};
let toggleDislike= document.getElementById("toggle-dislike");
let valueD =0;
function toggleD(){
valueD ++;
toggleDislike.innerHTML=valueD;
} ;
</script>
<p>©<small> 2021 All Right Reserved </small></small
</div>
</body>
</html>
</DOCTYPE>