-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (83 loc) · 3.82 KB
/
index.html
File metadata and controls
86 lines (83 loc) · 3.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DaveMerc</title>
<link rel="stylesheet" href="styles.css">
<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>
<header id="header">
<button class="fa-solid fa-bars burger">
</button>
<nav id="navbar">
<a href="#welcome-section">About</a>
<a href="#project-header">Projects</a>
<a href="#contacts">Contact</a>
</nav>
</header>
<main>
<section id="welcome-section">
<div class="left-section">
<h1>Dave Merc</h1>
<p>junior web developer</p>
</div>
<img class="my-image" src="/images/DaveImage.png" alt="image of developer" />
</section>
<h1 id="project-header" class="headers">Projects</h1>
<section id="projects">
<div class="project-tile" id="first-project">
<a href="#">
<h2 class="project-title">AutoRentz - Car Rental</h2>
<img src="images/autorentz1.png" alt="">
</a>
</div>
<div class="project-tile" id="second-project">
<a href="#">
<h2 class="project-title">Ordering Web App Pizza Shop</h2>
<img src="images/pizzashop1.png" alt="">
</a>
</div>
<div class="project-tile" id="third-project">
<a href="#">
<h2 class="project-title">Laundry Reservation</h2>
<img src="images/laundryshop1.png" alt="">
</a>
</div>
</section>
<h1 id="contacts" class="headers">Let's Socialize</h1>
<section id="contact-section">
<a href="https://github.com/maluyacode" id="profile-link" target="_blank"><i
class="fa-brands fa-github"></i></a>
<a href="https://www.linkedin.com/in/dave-merc-adlawan-aa2801262/" id="linkedin-link" target="_blank"><i
class="fa-brands fa-linkedin" style="color: #0a66c2;"></i></a>
<!-- <a href="https://www.upwork.com/freelancers/~016c71434347bb0f53?viewMode=1" id="upwork-link"
target="_blank">Upwork</a> -->
<a href="https://www.facebook.com/davemerc.adlawan.7/" id="facebook-link" target="_blank"><i
class="fa-brands fa-facebook" style="color: #1094f4;"></i></i></a>
<a href="https://www.instagram.com/davemercadlawan/" id="instagram-link" target="_blank"><i
class="fa-brands fa-instagram"></i></a>
</section>
<div id="contact-section-botoom">
<div id="pro-contact">
<h3>Email Address</h3>
<p>adlawandavemerc98@gmail.com</p>
<h3>Contact No</h3>
<p>0951-145-9080</p>
</div>
<form action="#" id="message-me" method="POST">
<label for="email">Email</label>
<input type="email" name="email" id="email" placeholder="Enter your email"
autocomplete="additional-name">
<label for="message">Message</label>
<textarea name="message" id="message" rows="10" placeholder="Enter your message"></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</main>
<script src="index.js"></script>
</body>
</html>