-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
138 lines (132 loc) · 4.78 KB
/
about.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
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/styles/main.css" />
<link rel="stylesheet" href="/styles/reset.css" />
<link rel="stylesheet" href="/styles/pages/about.css" />
<title>About - Lili Tompkins</title>
</head>
<body>
<div class="clearfix">
<header>
<div class="safearea-top" />
<div class="navbar-wrapper">
<div class="container">
<div class="navbar">
<div class="nav-logo">
<a href="/index.html">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path fill="currentColor" d="M3,5.63V19.05H0V5.63Zm4.32,6.71v8.3H4.44v-8.3Zm4.66-9V16.78H9.1V3.36ZM21.16,14.5l-5.8,5.92-2-2.05,5.91-5.92Zm1.25-4.89A1.6,1.6,0,1,0,24,11.2,1.59,1.59,0,0,0,22.41,9.61Zm-16.5-2A1.71,1.71,0,1,0,7.62,9.27,1.71,1.71,0,0,0,5.91,7.56Z" />
</svg>
</a>
</div>
<nav class="nav-wrapper">
<ul class="nav-content">
<li class="nav-item">
<a href="/about.html">
<span>About</span>
</a>
</li>
<li class="nav-item">
<a href="/portfolio.html">
<span>Portfolio</span>
</a>
</li>
<li class="nav-item">
<a href="/contact.html">
<span>Contact</span>
</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<main>
<div class="intro-wrapper">
<div class="container">
<div class="intro">
<div class="intro-text">
<h1>
About
</h1>
</div>
</div>
</div>
</div>
<div class="about-wrapper">
<div class="container">
<div class="about">
<div>
<img
src="/images/me.jpg"
/>
</div>
<div>
<p>
Hello, my name is Liliana Tompkins and I am a graphic designer based in Toronto, Canada. I draw inspiration from vintage work, current trends, and use them to create cohesive pieces of design. I have working in multiple mediums such as print, digital, video animation, and web design.
</p>
</div>
</div>
</div>
</div>
</main>
</div>
<footer>
<div class="footer-wrapper">
<div class="container">
<div class="footer">
<div class="footer-directory">
<nav class="footer-nav">
<ul class="footer-nav-content">
<li class="footer-nav-item">
<a href="/index.html">
<span>Home</span>
</a>
</li>
<li class="footer-nav-item">
<a href="/about.html">
<span>About</span>
</a>
</li>
<li class="footer-nav-item">
<a href="/portfolio.html">
<span>Portfolio</span>
</a>
</li>
<li class="footer-nav-item">
<a href="/contact.html">
<span>Contact</span>
</a>
</li>
</ul>
</nav>
</div>
<div class="footer-info">
<div class="footer-tagline">
<div class="footer-organization">
<div class="footer-organization-logo">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M3,5.63V19.05H0V5.63Zm4.32,6.71v8.3H4.44v-8.3Zm4.66-9V16.78H9.1V3.36ZM21.16,14.5l-5.8,5.92-2-2.05,5.91-5.92Zm1.25-4.89A1.6,1.6,0,1,0,24,11.2,1.59,1.59,0,0,0,22.41,9.61Zm-16.5-2A1.71,1.71,0,1,0,7.62,9.27,1.71,1.71,0,0,0,5.91,7.56Z" />
</svg>
</div>
<div class="footer-organization-name">
Lili Tompkins
</div>
</div>
<div class="footer-copyright">
<span>© 2021 Lili Tompkins. All Rights Reserved.</span>
</div>
</div>
</div>
</div>
</div>
<div class="safearea-bottom" />
</div>
</footer>
</body>
</html>