-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (42 loc) · 1.42 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
<html>
<!--
-(Color headings and text) Celebratory headlines and text
-->
<head>
<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=La+Belle+Aurore&family=Source+Sans+Pro:wght@300&display=swap"
rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Love Card</title>
<div class="div dashed_background">
<h1 id="daysleft" onclick="calculate_time()"></h1>
<button onclick="calculate_time()" class="div">See days before new year</button>
</div>
</head>
<body>
<br>
<div class="col-xl-12 col-md-12 col-sm-12 col-xs-8 dashed_background div">
<h1>My christmas card</h1>
<p class="p">By. Max Chacon</p>
</div>
<br>
<div class="div dashed_background">
<h1>What I want for christmas</h1>
<ul>
<li class="p">sd card</li>
<li class="p">8 bit do adapter</li>
<li class="p">$30 for steam credits</li>
</ul>
<h1>What I Like About Christmas</h1>
<ul>
<li class="p">I will Go to Canada</li>
<br>
<img src="Snow.webp" class="img">
<br>
<li class="p">I got accepted into this school</li>
</ul>
</div>
<script src="main.js"></script>
</body>
</html>