-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
101 lines (98 loc) · 3.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Document</title>
</head>
<body>
<nav>
<div class="logo">
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
<div class="box4"></div>
</div>
<h1>SLEAR</h1>
<ul>
<li><a href="">HOME</a></li>
<li><a href="">RESUME</a></li>
<li><a href="">PROJECTS</a></li>
<li><a href="">CONTACT</a></li>
</ul>
</nav>
<section class="first-section">
<div class="split">
<div class="hero">
<div class="image-container">
<img src="./assets/hero.png" alt="profile picture">
</div>
<h3>SLEAR MENDOZA</h3>
<p>Aspiring Web Developer</p>
</div>
<div class="hero-details">
<h1>Hello,</h1>
<p class="sub-title">a bit about me.</p>
<div class="circle-holder">
<a class="my-resume" href="">MY RESUME</a>
<a class="my-works" href="">MY WORKS</a>
<a class="my-skills" href="">MY SKILLS</a>
</div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </p>
</div>
</div>
</section>
<section>
<div class="split">
<div class="contact-details">
<h1>Let's get in touch</h1>
<p class="sub-title">I am open for any suggestions</p>
<div class="info-main">
<div class="info-item">
<img src="./assets/icon-phone.png" alt="phone icon">
<div class="info-details">
<h3>Contact Number</h3>
<p>09380469133</p>
</div>
</div>
<div class="info-item">
<img src="./assets/icon-email.png" alt="email icon">
<div class="info-details">
<h3>Email Address</h3>
<p>[email protected]</p>
</div>
</div>
<div class="info-item">
<img src="./assets/icon-location.png" alt="location icon">
<div class="info-details">
<h3>Home Address</h3>
<p>Taytay, Rizal</p>
</div>
</div>
</div>
</div>
<div class="contact-form">
<div class="form-main">
<div class="input">
<img src="" alt="">
<input type="text">
</div>
<div class="input">
<img src="" alt="">
<input type="email">
</div>
<textarea name="" id="" cols="30" rows="10"></textarea>
<div class="btn-container">
<button>SEND</button>
<img src="" alt="">
</div>
</div>
</div>
</div>
</section>
<footer>
</footer>
</body>
</html>