-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactme.html
89 lines (83 loc) · 4 KB
/
contactme.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
<!-- 22:11
-->
<!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>Arsha Renjith- Web developer, programmer and an AI Enthusiast </title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container"> <!--entire site is in a container-->
<div class="sidebar"> <!--this is for navigation-->
<nav>
<ul>
<li><a href="/portfolio.html">Home</a></li>
<li><a href="/aboutme.html">About me</a></li>
<li><a href="/services.html">Skills</a></li>
<li><a href="https://docs.google.com/document/d/1_6Mjl2SeZiCFWrv41D0yUeLB6-6vf-o3/edit?usp=sharing&ouid=105548695093186739336&rtpof=true&sd=true">CV</a></li>
</ul>
</nav>
</div>
<div class="main">
<div class="Infocontainer">
<div class="devInfo">
<div class="hello">Get in touch</div>
<div class="contactForm">
<form class="row g-3">
<div class="col-md-6">
<label for="inputEmail4" class="form-label">Email</label>
<input type="email" class="form-control" id="inputEmail4">
</div>
<div class="col-md-6">
<label for="inputPassword4" class="form-label">Password</label>
<input type="password" class="form-control" id="inputPassword4">
</div>
<div class="col-12">
<label for="inputAddress" class="form-label">Address</label>
<input type="text" class="form-control" id="inputAddress" placeholder="1234 Main St">
</div>
<div class="col-12">
<label for="inputAddress2" class="form-label">Address 2</label>
<input type="text" class="form-control" id="inputAddress2" placeholder="Apartment, studio, or floor">
</div>
<div class="col-md-6">
<label for="inputCity" class="form-label">City</label>
<input type="text" class="form-control" id="inputCity">
</div>
<div class="col-md-4">
<label for="inputState" class="form-label">State</label>
<select id="inputState" class="form-select">
<option selected>Choose...</option>
<option>...</option>
</select>
</div>
<div class="col-md-2">
<label for="inputZip" class="form-label">Zip</label>
<input type="text" class="form-control" id="inputZip">
</div>
<div class="col-12">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="gridCheck">
<label class="form-check-label" for="gridCheck">
Check me out
</label>
</div>
</div>
<div class="col-12">
<button type="submit" class="btn btn-primary">Sign in</button>
</div>
</form>
</div>
</div>
<div class="devPic">
<img src="images\woman.png" alt="Arsha renjith">
</div>
</div>
<!--lorem imposium was here-->
</div>
</div>
</body>
</html>