-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
61 lines (55 loc) · 1.21 KB
/
contact.html
File metadata and controls
61 lines (55 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<title>cTechstudios-Contact</title>
<div class="topnav">
<a href="index.html">Home</a>
<a href="https://dude2093350.github.io/portal.cTechstudios.com/">Project GoTM</a>
<a href="contect.html" class="active">Contact</a>
<a href="ctCareer.html">Careers</a>
<a href="About-us.html">About</a>
<a href="login.html" style="text-align: right;">Sign In</a>
</div>
<style>
html {
font-family: sans-serif;
}
.topnav {
background-color: lightgrey;
overflow: hidden;
margin-bottom: 10px;
}
.topnav a {
float: left;
color: black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #9999ff;
color: black;
}
.topnav a.active {
background-color: #9999ff;
color: white;
}
</style>
</head>
<body>
<h2>Contact Using the form below:</h2>
<form>
<p>Email</p>
<input type="text">
<p>Message</p>
<input type="textbox">
<br>
<input type="submit" value="Submit" onclick="alertfunction()">
<p>digital service unavailable, try later</p>
<script>
function alertfunction() {
alert('Sorry, the service is not available')
}
</body>
</html>