html
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
<!-- Created by preetha-->
<!DOCTYPE html>
<html>
<head>
<title> HAPPY NEW YEAR</title>
</head>
<body>
<marquee class="frd">
Advance Happy new year to all my friends of sololearn! 🎆🎇
</marquee>
<div class="text-container">
<h1><center>HAPPY </center></h1>
<h1><center>NEW YEAR </center></h1>
</div>
<div>
<h2 align="center"><u>2019</u></h2>
<ul>
<li> New Year is the time or day at which a new calendar year begins and the calendar's year count increments by one.</li><br />
<li> Many cultures celebrate the event in some manner and the 1st day of January is often marked as a national holiday. </li><br />
<li id="list">
A NEW YEAR is like a blank book. The pen is in your hands. It is your chance to write a beautiful story for yourself.Happy New Year. May God Blessed you!
</li><br />
<li><a href=" https://en.m.wikipedia.org/wiki/New_Year ">To know more about New Year 'click here'</a></li>
</ul>
Enter to Rename, Shift+Enter to Preview
css
css
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
//Created by preetha
.section {
padding: 15px;
margin-bottom: 10px;
border-radius: 10px;
}
.face {
transform: scale(0.4);
margin: 0 auto;
display: block;
margin-top: -25px;
margin-bottom: -130px;
}
table{
border-collapse: collapse;
background-color:pink;
}
th, td{
border: 1px solid #a5a5a5;
text-align: center ;
padding: 5px;
width: 55px;
}
#list
{
Enter to Rename, Shift+Enter to Preview
js
js
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
// Created by preetha
var name = prompt("Hi!! I'm Preetha.☺️\nWhat is your name:😉")
if(name=="null" || name=="")
{
name="Dear";
}
alert('Hi!' + name + '!! \nHappy New Year 😉🍻 \n May this New Year all your dreams turn into reality and all your efforts into great achievement. HAPPY NEW YEAR!!💥 ')
alert("Wait and watch all the animations and please scroll down and click the click me button ...☺ 👍🙌 ")
alert("Don't forget to upvote(^)")
var w1=" Happy new year friends... 🎆🎇 "
var w2="Wish you and your family a joyful ,healthy and happiest new year..."
var w3="Wish you lots of happiness and lots of love ❤️❤️❤... "
var i=0,j=0,k;
var last;
function wi()
{
type();
}
function type()
{
document.getElementById("w1").innerHTML
+=w1.charAt(i);
i++;
setTimeout(type,150)
last=w1.lastIndexOf(" ")
;
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run