-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (49 loc) · 2.29 KB
/
index.html
File metadata and controls
57 lines (49 loc) · 2.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Keraco Agency</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Welcome to my web page</h1>
</header>
<h2>About this page</h2>
<p>As a web agency developer, I specialize in creating dynamic and responsive websites tailored to your business needs. <br> From custom website design and development to seamless e-commerce solutions and content management systems, I provide comprehensive services to help your brand establish a strong online presence. <br> My focus is on delivering user-friendly, visually appealing, and high-performance websites that drive engagement and enhance user experience, ensuring your digital strategy's success.</p>
<h2>Registration Form</h2>
<form action="" class="register_form">
<label for="name">Full Name:</label><br>
<input type="text" id="name" name="name" placeholder="eg. John Doe"><br><br>
<label for="email">Email</label><br>
<input type="email" id="email" name="email"><br><br>
<label for="password">Create Password</label><br>
<input type="password" id="password" name="password"><br><br>
<label for="confirm-password">Confirm Password</label><br>
<input type="confirm-password" id="confirm-password" name="confirm-password"><br><br>
<input type="submit" value="Register">
</form>
<h2>User Information</h2>
<table border="1">
<tr>
<th>Name</th>
<th>Email</th>
<th>Phone number</th>
</tr>
<tr>
<td>John Doe</td>
<td>johndoe1@gmail.com</td>
<td>+254 723 123 343</td>
</tr>
<tr>
<td>Jane Doe</td>
<td>Janedoe12@gmail.com</td>
<td>+254 712 277 983</td>
</tr>
</table>
<h2>Web developer</h2>
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Ftse2.mm.bing.net%2Fth%3Fid%3DOIP.0USbc8SNgYf_q1XqtyvFhgHaD4%26pid%3DApi&f=1&ipt=da425ee6b3e26881a60ad99f6e3380569f449c72bee21b5b3640454dc0bed6d8&ipo=images" alt="web dev">
<p>For more info, visit <a href="https://google.com" target="_blank">Google</a></p>
</body>
</html>