-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (32 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css">
</head>
<body>
<section class="main">
<div class="content">
<h2>Hi, my name is<br><span>Cindy Sydney</span></h2>
<div class="animated-text">
<h3>Web Developer</h3>
<h3>Machine Learning Engineer</h3>
<h3>Cybersecurity Analyst</h3>
</div>
<a href="#" class="button">My projects</a>
<div class="media-icons">
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
</div>
</div>
<div class="imagediv">
<img class="image" src="assets/Coverphoto.jpg" alt="Cindy's cover photo">
</div>
</section>
<script src="script.js" charset="UTF-8"></script>
</body>
</html>