-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodejam - Copy (13).html
More file actions
54 lines (50 loc) · 1.19 KB
/
codejam - Copy (13).html
File metadata and controls
54 lines (50 loc) · 1.19 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Code Jam Workshop</title>
<meta charset="utf-8">
<meta type="author" content="ProgrammerPlays">
<style>
.open-header {
font-family: Calibri, Verdana, "Times New Roman", monospace;
}
.name {
font-family: Verdana, sans-serif;
}
.sample-header {
font-family: Verdana, sans-serif;
}
.body {
background-color: #040404;
}
h1 {
color: white;
}
p {
color: white;
}
h2 {
color: white;
}
h3 {
color: white;
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-159326105-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-159326105-1');
</script>
</head>
<body>
<h1 class="open-header">My name is: </h1>
<p class="name">William Parker</p>
<h1 class="sample-header">H1</h1>
<h2 class="sample-header">H2</h2>
<h3 class="sample-header">H3</h3>
<img src="https://codejam.fun/media/logos/jam-jar.png" alt="Code Jam Logo" width="104" class="imgalignc">
</body>
</html>