-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (108 loc) · 4.69 KB
/
Copy pathindex.html
File metadata and controls
110 lines (108 loc) · 4.69 KB
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
<!DOCTYPE html>
<html lang="zh-Hant-TW">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>第七週 - 視差滾動</title>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="container">
<h1 data-aos="flip-right">VITO</h1>
<img src="https://raw.githubusercontent.com/hexschool/2022-web-layout-training/main/2023week1/vito.png" alt="Vito's Image" data-aos="zoom-out-right">
<h2 class="w-50" data-aos="flip-left">RESUME</h2>
</header>
<div class="intro">
<div class="container" data-aos="fade-right" data-aos-offset="300" data-aos-easing="ease-in-sine">
<p class="w-50" >I'm Vito, a UI Designer with 5+ years of experience. I create visually appealing interfaces for web and mobile apps. Proficient in Sketch, Adobe XD, Figma, HTML, CSS, and JavaScript. I enjoy collaborating with others to create high-quality products.</p>
</div>
</div>
<main class="container">
<ul>
<li data-aos="fade-up" data-aos-anchor-placement="top-center">
<h3 class="w-50 mb-16">Vito Evans</h3>
<ul class="mb-40">
<li class="mb-8"><a href="#">456 Walnut Avenue, Someville, USA</a></li>
<li class="mb-8"><a href="#">+1 123 456 7890</a></li>
<li class="mb-8"><a href="#">info@hexschool.com</a></li>
<li><a href="#">www.infohexschool.com</a></li>
</ul>
</li>
<li data-aos="fade-up" data-aos-anchor-placement="top-center">
<h3 class="list-title w-50 mb-16">Education</h3>
<ul class="mb-40">
<li class="mb-16">
<p class="year">2014-2018</p>
<p class="w-50">Bachelor of Science in Business Administration, University of California, Los Angeles</p>
</li>
<li class="mb-16">
<p class="year">2012-2014</p>
<p class="w-50">Associate of Arts in Graphic Design, San Francisco State University</p>
</li>
<li>
<p class="year">2008-2012</p>
<p class="w-50">High School Diploma, Lincoln High School</p>
</li>
</ul>
</li>
<li data-aos="fade-up" data-aos-anchor-placement="top-center">
<h3 class="w-50 mb-16">Work</h3>
<ul class="mb-40">
<li class="mb-16">
<p class="year">2018-2021</p>
<p class="w-50">Marketing Manager, ABC Company</p>
</li>
<li class="mb-16">
<p class="year">2016-2018</p>
<p class="w-50">Sales Associate, XYZ Corporation</p>
</li>
<li>
<p class="year">2014-2016</p>
<p class="w-50">Customer Service Representative, QRS Inc.</p>
</li>
</ul>
</li>
<li data-aos="fade-up" data-aos-anchor-placement="top-center">
<h3 class="w-50 mb-16">Awards</h3>
<ul class="mb-40">
<li class="mb-12">
<p class="w-50">Best in Show Award, National Advertising Awards, 2020</p>
</li>
<li class="mb-12">
<p class="w-50">Honorable Mention, International Design Competition, 2019</p>
</li>
<li>
<p class="w-50">People's Choice Award, Local Art Exhibition, 2018</p>
</li>
</ul>
</li>
</ul>
</main>
<footer>
<div class="container">
<ul>
<li>
<a href="#">
<img src="https://github.com/hexschool/2022-web-layout-training/blob/main/2023week1/fb.png?raw=true" alt="Facebook Logo">
</a>
</li>
<li>
<a href="#">
<img src="https://github.com/hexschool/2022-web-layout-training/blob/main/2023week1/instagram.png?raw=true" alt="Instagram Logo">
</a>
</li>
<li>
<a href="#">
<img src="https://github.com/hexschool/2022-web-layout-training/blob/main/2023week1/line.png?raw=true" alt="Line Logo">
</a>
</li>
</ul>
</div>
</footer>
</body>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
AOS.init();
</script>
</html>