-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (64 loc) · 2.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Portfolio</title>
</head>
<link rel="stylesheet" href="styles.css">
</head>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
</style>
<body>
<header id="header">
<nav id="navbar">
<ul>
<li><a href="#welcome-section">About</a></li>
<li><a href="#projects">Work</a></li>
<li><a href="#contact">Contact</a></li>
<li><a id="profile-link" href="https://github.com/Karoljp35" target="_blank">Profile</a></li>
</ul>
</nav>
</header>
<section id="welcome-section">
<h1>Hey I am Karoline</h1>
<p><span class="p1">A</span> Web<span class="p2"> Developer</span ></span></p>
</section>
<div id="line"></div>
<section id="projects">
<h2>These are some of my projects</h2>
<div class="project-title">
<h3>SURVEY FORM</h3>
<img src="img/img.survey.png">
<a href="https://karoljp35.github.io/SURVEY/" target="_blank">View Project</a>
</div>
<div class="project-title">
<h3>NIGHT CITY</h3>
<img src="img/img.city.png">
<a href="https://karoljp35.github.io/night-city-/" target="_blank">View Project</a>
</div>
<div class="project-title">
<h2>BLOG</h2>
<img src="img/img.blog.png">
<a href="https://karoljp35.github.io/BLOG/" target="_blank">View Project</a>
</div>
</section>
<section id="contact">
<h2>Let's work together...</h2>
<p>How do you take your coffee?</p>
<form class="form">
<input type="email" placeholder="Email" required>
<textarea placeholder="Message" required></textarea>
<button type="submit">Send</button>
</form>
<div class="contact-links">
<a href="https://github.com/Karoljp35" target="_blank"><i class="fab fa-github"></i> GitHub</a>
<a href="https://www.linkedin.com/in/karolineramosjp/?locale=en_US" target="_blank"><i class="fab fa-linkedin"></i> LinkedIn</a>
</div>
</section>
<footer>
<p>© 2024 My Portfolio</p>
</footer>
</body>
</html>