-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
108 lines (98 loc) · 4.63 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Wafa Rifqi Anafin">
<meta name="author-link" content="https://wafarifqi.com">
<title>Free Portfolio Website Source Code</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link href="https://unpkg.com/[email protected]/css/boxicons.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="mobile-navigation">
<div class="mobile-navigation-indicator"></div>
<div class="mobile-navigation-item active">
<a href="#home"><i class="bx bxs-home"></i></a>
</div>
<div class="mobile-navigation-item">
<a href="#services"><i class="bx bxs-food-menu"></i></a>
</div>
<div class="mobile-navigation-item">
<a href="#about"><i class="bx bxs-wink-smile"></i></a>
</div>
<div class="mobile-navigation-item">
<a href="#contact"><i class="bx bxs-comment-detail"></i></a>
</div>
</div>
<a href="#home" class="back-to-top"><i class="bx bxs-to-top"></i></a>
<header class="navigation">
<div class="menu-wrap">
<a href="#home" class="logo">Wafa Rifqi Anafin</a>
<nav class="menu">
<a href="#home" class="menu-item active">Home</a>
<a href="#services" class="menu-item">Services</a>
<a href="#about" class="menu-item">About</a>
<a href="#contact" class="menu-item">Contact</a>
</nav>
</div>
</header>
<section id="home" class="section fullheight background-image fixed-bg">
<div class="container">
<div class="content">
<h1 class="animate">Frontend Developer</h1>
<p class="animate delay-2">Experienced in Web Design, Frontend Development, and Junior Backend Development with expertise in HTML5, CSS, Bootstrap, JavaScript, and PHP. Currently an active student at Universitas Nusa Mandiri.</p>
<button class="animate delay-4">Contact Me</button>
</div>
</div>
</section>
<section id="services" class="section background-image fixed-bg" style="background-image: url(assets/begeh2.jpg);">
<div class="container">
<h1>What Makes My <span class="primary-color">Services</span> Stand Out?</h1>
<p>I can create your website quickly with a modern design concept. My websites are high-tech, fast, and of the highest quality.</p>
</div>
</section>
<section id="about" class="section fullheight">
<div class="container">
<div class="row">
<div class="col-md-7">
<img src="assets/bg2.jpg" alt="About" class="responsive-image animate">
</div>
<div class="col-md-5">
<div class="content animate">
<h3>Create a <span class="primary-color">Website</span> for Your <span class="primary-color">Business</span></h3>
<p>Contact me to discuss your website needs. I am here to help your business become more credible and professional. Don't wait—get in touch now!</p>
</div>
</div>
</div>
</div>
</section>
<footer id="contact" class="section background-image">
<div class="container">
<div class="row">
<div class="col-md-6">
<h1>Wafa Rifqi Anafin</h1>
<p>Take your business to the next level. Contact me today!</p>
<ul>
<li>Email: <a href="mailto:[email protected]">[email protected]</a></li>
<li>Facebook: Wafa Rifqi Anafin</li>
<li>Instagram: @wafarifki_</li>
<li>Website: <a href="https://wafarifqi.com/">wafarifqi.com</a></li>
</ul>
</div>
<div class="col-md-6">
<h1>Contact Me</h1>
<p>Let's create progress for your business together!</p>
<div class="input-group">
<input type="email" placeholder="Enter Your Email">
<button>Submit</button>
</div>
</div>
</div>
</div>
</footer>
<script src="js/index.js"></script>
</body>
</html>