-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (44 loc) · 2 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
47
48
49
50
<!DOCTYPE html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <!-- (for proper responsive behavior on mobile devices)-->
<title>RavenCreations</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<!-- Google Advertising Code -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1612234023216032" crossorigin="anonymous"></script>
</head>
<body>
<!-- I'm heavily following the Boostrap docs to construct this header lul-->
<nav class="navbar navbar-expand-lg bg-light">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="./Photos.html"> Photography </a>
</li>
<li class="nav-item">
<a class="nav-link" href="./Computing.html"> Computing </a>
</li>
</ul>
</nav>
<h1> Welcome to my page! </h1>
<p>
This page is intended to be a "blog" of sorts, mostly containing cool content and information I've learned that I thought I'd share about on the side.
</p>
<p>
Here I am attempting to insert an advertisement:
</p>
<div>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1612234023216032"
crossorigin="anonymous"></script>
<!-- Generic Horizontal Ad - RavenCreations -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-1612234023216032"
data-ad-slot="3248385105"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</body>