-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarketing.html
69 lines (63 loc) · 2.49 KB
/
marketing.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Marketing Experience</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet">
</head>
<body>
<header class="header-marketing">
<nav class="main-nav">
<ul class="nav">
<li class="name">Karina Rogers</li>
<li><a href="index.html">Home</a></li>
<li><a href="webdev.html">Web Development</a></li>
<li><a href="photography.html">Photography</a></li>
<li><a href="marketing.html">Marketing</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="about.html">About Me</a></li>
</ul>
</nav>
</header>
<main>
<h1>Marketing Experience</h1>
<section class="flex-not">
<h2>I have experience with the following:</h2>
<ul>
<li>Creating marketing strategies</li>
<li>Google Tag Manager setup</li>
<li>Implementing and interpreting Google Analytics</li>
<li>Google shopping ad management</li>
<li>Digital marketing</li>
<li>Email marketing</li>
<li>Content curation</li>
<li>Blog management</li>
<li>Social media presence</li>
<li>Search Engine Optimization</li>
<li>Project management</li>
<li>Campaign curation</li>
<li>User optimization designs</li>
<li>Conversion optimization</li>
</ul>
</section>
</main>
<hr>
<footer>
<aside>
<h3>Ready to start building your web page?</h3>
<p>Contact me</p>
<p><strong>Email:</strong> [email protected]</p>
</aside>
<ul>
<li><a href="https://www.linkedin.com/in/karina-rogers-8799321a7/" target="_blank"
class="social linkedin">LinkedIn</a></li>
<li><a href="https://github.com/karinarogers" target="_blank" class="social github">Github</a></li>
</ul>
<p class="copyright">Copyright 2021, Karina Rogers</p>
</footer>
</body>
</html>