-
Notifications
You must be signed in to change notification settings - Fork 2
/
about.html
88 lines (83 loc) · 3.22 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
<!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">
<!-- CSS Stylesheets -->
<link href="styles/index.css" rel="stylesheet" type="text/css" />
<link href="styles/about.css" rel="stylesheet" type="text/css" />
<!-- Unicons Stylesheet -->
<link href="https://unicons.iconscout.com/release/v4.0.0/css/line.css" rel="stylesheet" />
<title>Sau's Portfolio</title>
</head>
<body>
<header>
<!-- Header -->
<nav>
<!-- Navigation-->
<div class="menu-links">
<!--Menu links -->
<div class="nav-link">
<!-- Link-->
<a href="index.html">Home</a>
</div>
<div class="nav-link">
<!-- Link-->
<a href="about.html">About</a>
</div>
<div class="nav-link">
<!-- Link -->
<a href="#">Portfolio</a>
</div>
</div>
<div class="logo">
<!-- Logo -->
Portfolio
</div>
<div class="btn">
<!-- Download CV Button -->
<a href="./assets\documents\Design Thinking in UX.pdf" download>Download CV</a>
</div>
</nav>
</header>
<!-- Main Section -->
<main>
<section class="section about">
<!-- About Section -->
<div class="container">
<!-- About Content -->
<!-- <div class="about-content"> -->
<div class="about-content"><!-- Left Side -->
<div class="circle-left"></div>
<h3 class="about-text">MY BACKGROUND</h3>
<p class="about-desc">Lorem ipsum dolor sit amet consectetur adipisicing elit.
Hic soluta quidem blanditiis veniam, magnam vitae quasi
sit maiores saepe unde molestiae cumque ducimus aspernatur
ipsum quisquam nesciunt quo error quis.
</p>
</div>
<div class="about-img"><!-- Middle Part -->
<img src="./assets/images/homeimg.png" alt="woman seated" class="home-image"/>
<p class="about-img-text">ABOUT ME</p>
</div>
<div class="view"><!-- Right Part -->
<div class="circle-right"></div>
<a href="#">View my portfolio</a>
</div>
</div>
<!-- </div> -->
</section>
</main>
<!-- Footer Section -->
<footer>
<a href="mailto:[email protected]" class="email">[email protected]</a>
<div class="social-links">
<i class="uil uil-facebook"></i><!-- Facebook -->
<i class="uil uil-twitter"></i><!-- Twitter -->
<i class="uil uil-github"></i><!-- Github -->
<i class="uil uil-linkedin"></i><!-- Linked in -->
</div>
</footer>
</body>
</html>