-
Notifications
You must be signed in to change notification settings - Fork 1
/
thanks.html
119 lines (119 loc) · 4.13 KB
/
thanks.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html id="thanks" lang="en">
<head>
<meta charset="utf-8" />
<title>Barbara Samanich - Art Director - Designer - Illustrator</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="The online portfolio of Barbara Samanich, BFA, a leader in Art Direction, Design and Illustration."
/>
<meta
name="keywords"
content="art director, illustrator, hand drawn, illustration, infographic designer, infographics, design, social media, branding, marketing, advertising"
/>
<meta name="robots" content="noindex, nofollow" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png" />
<link
rel="icon"
type="image/png"
sizes="32x32 16x16"
href="icons/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="192x192 96x96"
href="icons/android-icon-192x192.png"
/>
<link rel="mask-icon" color="#770000" href="safari-pinned-tab.svg" />
<link rel="manifest" href="manifest.json" />
<meta name="msapplication-config" content="browserconfig.xml" />
<meta name="apple-mobile-web-app-title" content="Barbara Samanich" />
<meta name="application-name" content="Barbara Samanich" />
<meta name="theme-color" content="#faff00" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/simplex/bootstrap.min.css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="css/media.css" />
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button
type="button"
class="navbar-toggle"
data-toggle="collapse"
data-target="#myNavbar"
>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"
>Barbara <em>Sam</em>anich</a
>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="work.html">Work</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</nav>
<article class="white-popup">
<h2 class="stretch">
¡ÉXITO! <span style="font-size: 1.3em">|</span> УСПЕХ!
<span style="font-size: 1.3em">|</span> USPJEH!
<span style="font-size: 1.3em">|</span> SUCCESS!
</h2>
<p>
Thanks for reaching out<span id="name"></span>! I'll get back with you
as soon as I can.
</p>
</article>
<footer>
<h4 class="pull-left">© Barbara Samanich 2022</h4>
<ul class="pull-right list-inline">
<li>
<a href="https://www.behance.net/sammyart"
><img src="img/behance.png" style="height: 30px"
/></a>
</li>
<li>
<a href="https://www.linkedin.com/in/barbara-samanich"
><img src="img/linkedin.png" style="height: 30px"
/></a>
</li>
</ul>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script>
function getUrlVars() {
var vars = {};
var parts = window.location.href.replace(
/[?&]+([^=&]+)=([^&]*)/gi,
function (m, key, value) {
vars[key] = value;
}
);
return vars;
}
var cleanname = getUrlVars()["name"];
document.getElementById("name").innerHTML =
", " + cleanname.split("+").join(" ");
</script>
<script src="lib/tools.js"></script>
</body>
</html>