-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvs1.html
70 lines (65 loc) · 2.86 KB
/
vs1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Voice of the Customer | jbaileystudio</title>
<link rel="stylesheet" href="./style.css">
<link rel="icon" href="favicons/favicon-32x32.png" type="image/x-icon">
<!-- Tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-219530537-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-219530537-1');
</script>
<!-- End Tracking -->
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<style>
</style>
<body>
<div style="background: #f7f7f7;">
<div class="header_div">
<a class="back_to_home" aria-label="J Bailey Studio Home" href="index.html" style="text-decoration: none; color: black">← Back Home</a>
<h1>Incorporating the Voice of the Customer into our Design Process</h1>
<ul class="horz_list2">
<li class="horz_item">Company: <a>Victoria's Secret</a></li>
<li class="horz_item">Departments: <a>UX Strategy, UX Research, Customer Insights, Executive</a></li>
</ul>
</div>
</div>
<main class="inner_main">
<h2>Process</h2>
<iframe style="border: 1px solid rgba(0, 0, 0, 0.1);" width="100%" height="1200" src="https://www.figma.com/embed?embed_host=share&url=https%3A%2F%2Fwww.figma.com%2Ffile%2FMulcfAQIm2yP6ywZ7IkAj9%2FVS-Portfolio-Work-Figjam%3Fnode-id%3D0%253A1%26t%3DUW7JwnvIMNygHHiq-1" allowfullscreen></iframe>
<figcaption class="fig_caption_hero">Use the figjam file in full screen mode for the best experience</figcaption>
</main>
<footer>
<p>
Interested in this project and want to learn more? <a href="mailto:[email protected]">Reach out to me</a>
</p>
</footer>
<button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
<script>
// Get the button
let mybutton = document.getElementById("myBtn");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
</body>
</html>