-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClassic.html
135 lines (125 loc) · 3.25 KB
/
Classic.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Michelle Green</title>
<style>
body {
font-family: Cambria;
margin: 0;
padding: 0;
background-color: #000000;
}
header {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
background-color:red;
color: #000000;
padding: 20px;
}
h1,
h2 {
font-size: 36px;
text-align: center;
}
p {
font-size: 18px;
line-height: 1.6;
margin: 20px;
text-align: center;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
box-shadow: 0px 0px 10px rgba(140, 140, 140, 0.1);
}
.container2 {
max-width: 800px;
padding: 90px;
}
.menu {
margin: 0 px;
max-width: 800px;
text-align: center;
word-spacing: 40px;
font-size: 20px;
font-family: Gill Sans;
}
a:link {
color: white;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: white;
background-color: transparent;
text-decoration: none;
}
.marketing-list {
text-align:left;
font-size:28px;
color:white;
margin:100px;
}
</style>
<div class="menu">
<a href="index.html"> Home</a>
<a href="About.html">About</a>
<a href="Video.html"> Video</a>
<a href="Animations.html"> Animations</a>
<a href="Classic.html"> Classic</a>
<a href="Gifs.html"> Gifs</a>
</div>
</head>
<body>
<header>
<h1>Marketing</h1>
</header>
<h2>
Marketing Services
</h2>
<div class="marketing-list">
<li>Copywriting</li>
<li>
Content creation
</li>
<li>Creative strategy</li>
<li>Blog articles</li>
<li>
Customer relationship management
</li>
<li>
Social media marketing
</li>
<li>
Brand strategy & architecture
</li>
<li>
Email marketing
</li>
<li>
Marketing automation
</li>
<li>
Rebranding
</li>
<li>
Data collection and analytics
</li>
<li>
Page Optimization
</li>
<li>
PR
</li>
<li>
Marketing strategy
</li>
<li>Lead generation</li>
</div>
</body>
<footer>
© 2035 by Michelle Green
</footer>
</html>