-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
143 lines (129 loc) · 4.5 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Your description goes here">
<meta name="keywords" content="one, two, three">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Erick Felix | WebDev</title>
<!-- external CSS link -->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link rel="apple-touch-icon" sizes="180x180" href="img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png">
</head>
<body>
<!-- header -->
<header id="header" class="alt">
<div id="menu_icon">
<img src="img/ef.png" alt="">
<i class='bx bx-menu'></i>
</div>
<nav id="menu" class="menu-dsktop">
<ul>
<li><a href="#main">Home</a></li>
<li><a href="#needs">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- menu mobile -->
<nav id="show-menu" class="menu">
<ul>
<li><a class="nav" href="#main">Home</a></li>
<li><a class="nav" href="#needs">About</a></li>
<li><a class="nav" href="#projects">Projects</a></li>
<li><a class="nav" href="#contact">Contact</a></li>
</ul>
</nav>
<!-- menu -->
<!-- main banner -->
<main id="main">
<section class="title color">
<h1 class="h1_mobile">Hi, I'm Erick, Your next <span class="web">Web Developer</span></h1>
<h1 class="h1_dsktp">Hi, I'm Erick, Your next <br><span class="web">Web Developer</span></h1>
<p>Ready to meet your needs!</p>
</section>
<section>
<img class="profile" src="img/profile blue.png" alt="">
</section>
</main>
<section id="needs">
<h2>About</h2>
<p>
Here to help you level-up your brand and web presence to the next level, and to reach new customers
due to the connectivity that Internet provides.
</p>
<p>
I'll build a responsive web design that will let your target audience to interact with your brand from desktop to phones.
</p>
<p>
With that being said... Let me know how can I help you!
</p>
</section>
<section id="projects" class="color">
<h2>Projects</h2>
<div class="projects_sections">
<section>
<a href="https://cafecuisinerestaurant.glitch.me/" target="_blank">
<img class="pro" src="img/restaurant.png" alt="restaurant picture">
</a>
</section>
<section>
<a href="https://salonayesha.glitch.me/" target="_blank">
<img class="pro" src="img/salon.png" alt="salon picture">
</a>
</section>
<section>
<a href="https://efs0-cod3.github.io/time_track/" target="_blank">
<img class="pro" src="img/timeTracker.png" alt="salon picture">
</a>
</section>
</div>
</section>
<section id="contact">
<h2>Let's Get in touch!</h2>
<p>Open to work with new freelance clients</p>
<form method="post" id="form">
<div class="fields">
<div class="top_fields">
<div class="field f1">
<input type="text" name="name" id="fullName" placeholder="Name here:" />
</div>
<div class="field f2">
<input type="email" name="email" id="email_id" placeholder="Email here:" />
</div>
</div>
<div class="bottom_field">
<div class="field">
<textarea name="message" id="message" rows="4"
placeholder="Send a message and let's schedule a chat!"></textarea>
</div>
</div>
<ul class="actions">
<li><input id="submit" type="submit" value="Send Message" /></li>
</ul>
</div>
</form>
</section>
<div class="ty_modal">
<h2 id="ty_msg"></h2>
</div>
<footer>
<a class="socials" href="https://twitter.com/efs0_code"><i class='bx bxl-twitter'></i></a>
<a class="socials" href="https://github.com/efs0-cod3"><i class='bx bxl-github'></i></a>
<a class="socials" href="https://www.instagram.com/efs0cod3/"><i class='bx bxl-instagram'></i></a>
<a class="socials" href="mailto:[email protected]"><i class='bx bx-envelope'></i></a>
</footer>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js"></script>
<script type="text/javascript">
(function () {
emailjs.init("HcfSvwg3cJUz8fMVf");
})();
</script>
</body>
</html>