-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog9.html
114 lines (102 loc) · 5.36 KB
/
blog9.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tiana Paunoska | Post</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+Display&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="poststyles.css">
<link rel="icon" href="sliki/favicon.ico">
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"> </script>
<script>
$(window).on("load",function(){
$(document).ready(function(){
$("#p9").click(function(){
var user9=$("#u9").val();
var comment9=$("#c9").val();
var time9=new Date($.now());
var day9=time9.getDate();
var month9=time9.getMonth();
var year9=time9.getFullYear();
var hour9=time9.getHours();
var min9=time9.getMinutes();
var prev9=$("#i9").html();
localStorage.setItem('c9',prev9);
$("#i9").html(prev9 + "<div class=\"imguser\"><img src=\"sliki/user.png\" width=\"50\" height=\"50\"></div><div class=\"commbox\"><p class=\"username\">" + user9 + "</p><em class=\"timetext\">" + hour9 +":" + min9 + " " + day9 + "/" + month9 + "/" + year9 + "</em><p class=\"commtext\">" + comment9 + "</p></div><hr><br>");
})
})
})
</script>
<script>
$(window).on("load",function(){
const prevComm9=localStorage.getItem('c9');
$("#i9").html(prevComm9);
})
</script>
<script>
$(window).on("reload",function(){
const prevComm9=localStorage.getItem('c9');
$("#i9").html(prevComm9);
})
</script>
</head>
<header>
<nav>
<ul>
<li><a class="special" href="home.html">Home</a></li>
<li><a class="special" href="favthings.html">Favorite Things</a></li>
<li><a class="special" href="blogposts.html">Latest Posts</a></li>
<li><a class="special" href="gallery.html">Gallery</a></li>
<li><a class="special" href="contact.html">Contact</a></li>
<li class="imgEl"><img src="sliki/logo.png" alt="Logo"></li>
</ul>
</nav>
</header>
<body>
<p class="upperpart"><date>19/12/2021</date>
<em>Music, Entertainment</em></p>
<h1>2022 New Music Releases</h1>
<p class="small">
<img src="sliki/music.jpg">
</p>
<p>
Guns N' Roses fans are in for a heck of a year. Two major releases are on tap from the band, along with the fourth solo album by Slash.
The guitarist confirmed plans for an expanded box set celebrating 1991's twin Use Your Illusion albums, which he said was due next summer. Before that, Guns N' Roses are releasing expanded editions of their digital single “Hard Skool” with bonus tracks on CD, vinyl and cassette. 4, meanwhile, extends Slash's nearly decade-long collaboration with Myles Kennedy and the Conspirators, and follows 2018's Living the Dream.
David Bowie's previously unreleased album Toy finally arrives, two decades after its original proposed release. Elsewhere, John Mellencamp's new album Strictly a One-Eyed Jack features three collaborations with Bruce Springsteen.
Jethro Tull are back with The Zealot Gene, after a studio break of nearly two decades. Rock Believer is Scorpions' first LP with former Motorhead drummer Mikkey Dee. Tears for Fears will release their first album in 17 years, and longtime Joe Bonamassa collaborator Beth Hart is paying tribute to Led Zeppelin.
More information on these and other rock albums can be found below. Remember to follow this continuously updated list of new music releases for details on records issued throughout the year.
Read More: 2022 New Music Releases | https://ultimateclassicrock.com/2022-new-music-releases/?utm_source=tsmclip&utm_medium=referral
</p>
<em>Related Posts</em><hr>
<div class="related">
<div class="related">
<p class="text">The History of the <br> New Year's Concert</p>
<a class="post" href="blog5.html">
<img class="image" src="sliki/strauss.jpg" width="400" height="200">
</a>
</div>
</div>
<br>
<em>Start your discussion</em><hr>
<div>
<label>
<textarea id="c9" rows="10" cols="80">Share your thoughts...</textarea></label>
<label>Name<input id="u9" type=text required /></label><br>
<label>Email<input type=\text\></label><br>
<button id="p9" class="postbtn">Post</button>
</div><hr>
<br>
<div id="i9" class="comm"></div>
</body>
<footer class="footerclass"><hr>
<p class="standard">© 2021 Tiana Paunoska</p>
<p class="standard">Information</p>
<p class="standard">
<a href="contact.html">contact me</a>
</p>
</footer>
</body>
</html>