-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (63 loc) · 2.23 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
<!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">
<title>Personal Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="flex">
<div class="half_width">
<h3 class="mt1">Hello I'm</h3>
<h2>Sandelina Sam</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quis corrupti ad minima nisi numquam quod eveniet iusto consequatur vel! Reiciendis molestias ullam inventore suscipit nihil.</p>
<button>More</button>
</div>
<div class="half_width">
<img src="img/pic1.png" alt="">
</div>
</section>
<section class="flex">
<div class="half_width">
<img src="img/pic2.png" alt="">
</div>
<div class="half_width">
<h3 class="mt1">Hello I'm</h3>
<h2>Sandelina Sam</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Aperiam odit doloremque id quia fugiat sit!</p>
<button>More</button>
</div>
</section>
<section class="Work">
<h3 class="text_center mt1">My Last Work</h3>
<div class="flex">
<div class="m2">
<img src="img/lp1.jpg" alt="">
</div>
<div class="m2">
<img src="img/lp2.jpg" alt="">
</div>
<div class="m2">
<img src="img/lp3.jpg" alt="">
</div>
</div>
<h3 class="text_center mt1">What Client's Are Say</h3>
<p class="text_center"><b>lorem Ipsum</b></p>
<p class="text_center">Best Services Ever</p>
<p class="text_center">Lorem ipsum dolor sit amet consectetur adipisicing elit. Eligendi, perspiciatis!</p>
</section>
<footer>
<div class="contact mt1">
<h3 class="text_center">Contact Me With</h3>
<p class="text_center">Mail : [email protected]</p>
</div>
<br>
<br>
<br>
<br>
<p class="text_center">©copyright 2022-23 || All Right's Resarved by Sandelina Sam.</p>
</footer>
</body>
</html>