-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPix.html
85 lines (76 loc) · 2.59 KB
/
Pix.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio - UX Designer</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #333;
color: #fff;
padding-top: 30px;
min-height: 70px;
border-bottom: #77aaff 3px solid;
}
header h1 {
text-align: center;
text-transform: uppercase;
margin: 0;
}
.intro,
.case-studies {
padding: 20px;
background: #fff;
margin: 20px 0;
}
.case-study {
margin-bottom: 20px;
}
.case-study h3 {
margin-top: 0;
}
</style>
</head>
<body>
<header>
<h1>My Portfolio</h1>
</header>
<div class="container">
<section class="intro">
<h2>About Me</h2>
<p>Hello! I'm a passionate UX designer with a knack for creating intuitive and engaging user experiences.
With a background in design and a keen eye for detail, I strive to make every interaction delightful and
meaningful.</p>
</section>
<section class="case-studies">
<h2>Case Studies</h2>
<div class="case-study">
<h3>Project 1: Redesigning E-commerce Website</h3>
<p>In this project, I worked on improving the user experience of an e-commerce website. The goal was to
enhance the shopping experience and increase conversion rates.</p>
</div>
<div class="case-study">
<h3>Project 2: Mobile App for Fitness Tracking</h3>
<p>This project involved designing a mobile app that helps users track their fitness activities. The
focus was on creating an intuitive interface that encourages users to stay active.</p>
</div>
<div class="case-study">
<h3>Project 3: Revamping a Corporate Website</h3>
<p>For this project, I led the redesign of a corporate website to improve its usability and visual
appeal. The aim was to create a professional and user-friendly online presence.</p>
</div>
</section>
</div>
</body>
</html>