-
Notifications
You must be signed in to change notification settings - Fork 0
/
About.html
67 lines (64 loc) · 2.21 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
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Brian's Portfolio</title>
<!-- CSS STYLESHEET -->
<link rel="stylesheet" type="text/css" href="./Styles/Portfolio.css">
<link rel="stylesheet" type="text/css" href="./Styles/About.css">
<!-- UNICORN STYLESHEET -->
<link rel="stylesheet" type="text/css" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
</head>
<body>
<header>
<nav>
<div class="menu_links"><!-- This div element contains other divs containing the links of the navigation bar -->
<div class="nav_link">
<a href="Portfolio.html">Home</a>
</div>
<div class="nav_link">
<a href="#">About</a>
</div>
<div class="nav_link">
<a href="#">Portfolio</a>
</div>
</div>
<div class="logo"><!-- Div element for inserting a logo -->
<b>NI.BRYAN<b>
</div>
<div class="btn"> <!-- Download CV button -->
<a href="#">Download my CV</a>
</div>
</nav>
</header>
<main>
<section class="section-about"><!-- HOME SECTION-->
<div class="container"><!-- HOME CONTENT -->
<!-- <div class="about-content"> -->
<div><!-- Left Part -->
<div class="circle-left"></div>
<h3 class="about-text">MY BACKGROUND</h3>
<p class="about-dsc">Roses are red, violets are blue :) but here's a sad truth for you, you're doomed and are slotted for wrath unless you're part of them that are saved!</p>
</div>
<div class="about-img"><!-- Middle Part -->
<img class="home-image" src="./Assets/Images/coffee_cup.jpg" alt="Cup of cofee beside a laptop">
<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>
</section>
</main>
<footer>
<p class="email">[email protected]</p>
<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> <!-- LinkedIn -->
</div>
</footer>
</body>
</html>