-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
84 lines (76 loc) · 2.44 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>M Faris Gibran</title>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<nav class="navigation">
<div>
<a class="logo" href="/">
<img class="icon" src="/images/mfarisgibran-logo.svg" alt="Icon" />
<span>M Faris Gibran</span>
</a>
</div>
<div class="navigation-menu">
<a href="/about">About</a>
<a href="/portfolio">Portfolio</a>
<a href="/blog">Blog</a>
<a href="/contact">Contact</a>
<a href="/store">Store</a>
<input class="search-bar" type="text" placeholder="Search..." />
</div>
</nav>
<main>
<section class="intro">
<blockquote>
<p>
We can't choose where we come from, but we can choose where we want
to go with our own efforts
</p>
<footer>—M Faris Gibran</footer>
</blockquote>
<img src="images/mfarisgibran.jpg" alt="M Faris Gibran" />
</section>
<section class="buttons">
<a class="button" href="/about">Learn More</a>
<a class="button" href="/contact">Contact Me</a>
</section>
<section class="roles">
<div class="section-heading">
<h1>Current Roles</h1>
<div class="separator"></div>
</div>
<div class="cards">
<div class="card">
<img src="images/learner.png" alt="Learner" />
<h2>Learner</h2>
<p>
Undergraduate student majoring in Business Administration with
specialization in Finance
</p>
</div>
<div class="card">
<img src="images/entrepreneur.png" alt="Entrepreneur" />
<h2>Entrepreneur</h2>
<p>
Managing personal stock portfolio and doing dropshipping through
own created website
</p>
</div>
<div class="card">
<img src="images/web-developer.png" alt="Web Developer" />
<h2>Web Developer</h2>
<p>Currently a member of Azobu and a freelance web developer</p>
</div>
</div>
</section>
</main>
</body>
</html>