-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (106 loc) · 4.64 KB
/
index.html
File metadata and controls
125 lines (106 loc) · 4.64 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html>
<head>
<title>Portfolio Website</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital, wght@0,100;0,200;,300;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="hero">
<nav>
<h2 class="logo">Portfo<span>lio</span></h2>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Me</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Skills</a></li>
<li><a href="#">Contact Me</a></li>
</ul>
<a href="#" class="btn">Subscribe</a>
</nav>
<div class="content">
<h4>Hello, my name is</h4>
<h1>Adrian <span>Faria</span></h1>
<h3>I'm a University Student.</h3>
<div class="newsletter">
<form>
<input type="email" name="email" id="mail" placeholder="Enter Your Email">
<input type="submit" name="submit" value="Join">
</form>
</div>div>
</div>
</div>
<section class="about">
<div class="main">
<img src="main-img.png">
<div class="about-text">
<h2>About Me</h2>
<h5>Computer Science <span>Student</span></h5>
<p>I am a Computer Science student at Deakin University (Burwood). I study mainly Computer Science
units and with the occasional Commerce units. My major is data science and I hope to keep this till
the end of my course. I have experience in the field as I have participated in internship programs
with consulting and web design.</p>
<button type="button">Email Me</button>
</div>
</div>
</section>
<div class="service">
<div class="title">
<h2>My Experience</h2>
</div>
<div class="box">
<div class="card">
<i class="fas fa-bars"></i>
<h5>Web Development</h5>
<div class="pra">
<p>Every website should be built with two primary goals - Firstly, it needs to work across all devices.
Secondly, it needs to be as fast as possible.</p>
<p style="text-align: center;">
<a class="button" href="#">Read More</a>
</p>
</div>
</div>
<div class="card">
<i class="fas fa-user"></i>
<h5>Consulting Services</h5>
<div class="pra">
<p>Assisting individuals or organizations in solving problems, making informed decisions,
or improving their overall performance of their task.</p>
<p style="text-align: center;">
<a class="button" href="#">Read More</a>
</p>
</div>
</div>
<div class="card">
<i class="fas fa-arrow-down-short-wide"></i>
<h5>Coding</h5>
<div class="pra">
<p>I have a strong proficiency in coding, with experience in multiple programming languages such as Python, Java, and JavaScript.</p>
<p style="text-align: center;">
<a class="button" href="#">Read More</a>
</p>
</div>
</div>
</div>
</div>
<div class="contact-me">
<p>For Consulting or Web Design.</p>
<a class="button-two" href="#">Contact Me</a>
</div>
<footer>
<p>Adrian Faria</p>
<p>221287915</p>
<div class="social">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
</div>
<p class="end">Website By Adrian Faria</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue-router@3.6.0/dist/vue-router.js"></script>
<script src="app.js"></script>
</body>
</html>