-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.html
34 lines (34 loc) · 1.69 KB
/
home.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
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-touch-fullscreen" content="YES">
<meta name="apple-mobile-web-app-capable" content="yes">
<head>
<title>Control your PC NetEaseMusic</title>
</head>
<h1 style="text-align: center; color: plum;">Control your cloudmusic player online!</h1>
<form action="/" method="post" style="text-align:center; color: slateblue;">
<p>Pause: <input type="text" name="act" value="pause"/></p>
<input type="submit" value="pause" style="color: slateblue;"/>
</form>
<form action="/" method="post" style="text-align:center; color: salmon;">
<p>Next: <input type="text" name="act" value="next"/></p>
<input type="submit" value="next" style="color: salmon;"/>
</form>
<form action="/" method="post" style="text-align:center; color: saddlebrown;">
<p>Previous: <input type="text" name="act" value="previous"/></p>
<input type="submit" value="previous" style="color: saddlebrown;"/>
</form>
<form action="/" method="post" style="text-align:center; color: red;" >
<p>Like: <input type="text" name="act" value="like"/></p>
<input type="submit" value="Like" style="color: red;"/>
</form>
<form action="/" method="post" style="text-align:center; color:teal;" >
<p>Like: <input type="text" name="act" value="vup"/></p>
<input type="submit" value="volume up" style="color: teal;"/>
</form>
<form action="/" method="post" style="text-align:center; color:steelblue;" >
<p>Like: <input type="text" name="act" value="vdown"/></p>
<input type="submit" value="volume down" style="color: steelblue;"/>
</form>
</html>