-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (34 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-175990716-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-175990716-1');
</script>
<!--Prevent compatibility mode-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<!--Set character set-->
<meta charset="UTF-8">
<!--Set title-->
<title>Paul R. Reesman</title>
<!--Global styling-->
<style>
html { background-color: #f9f9f9; }
body { margin: 0; }
</style>
</head>
<body>
<div id="reactContainer"></div>
<!-- Dependencies -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.13.1/umd/react.development.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.13.1/umd/react-dom.development.js"></script>
<script src="dist/portfolio.min.js" ></script>
<noscript>Please enable JavaScript in your browser! This webpage is built using ReactJS and needs to be able to run scripts in order to render this page properly.</noscript>
</body>
</html>