-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
119 lines (97 loc) · 2.77 KB
/
Copy pathcontact.html
File metadata and controls
119 lines (97 loc) · 2.77 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Boldonse&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<style>
p,
header,
nav,
a,
footer {
font-family: Roboto;
}
header {
padding-bottom: 10px;
margin-bottom: 0px;
text-align: center;
}
footer {
font-size: 13px;
color: navy;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.footer-text {
margin: 0px;
}
nav {
display: flex;
justify-content: center;
margin-bottom: 5%;
}
.contact {
border: none;
scale: 1.1;
box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}
a {
margin-right: 2%;
border-style: solid;
background-color: gray;
color: white;
text-decoration: none;
padding: 10px;
transition: transform 0.1s;
}
a:active {
transform: scale(0.95);
}
hr {
margin-top: 20%;
margin-bottom: 2%;
}
.logo {
width: 15%;
}
.form-box {
display: flex;
justify-content: center;
}
.google-form {
width: 50%;
height: 600px;
border: solid;
}
</style>
</head>
<body>
<div>
<header><h1>Team 14</h1></header>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html" class="contact">Contact</a>
</nav>
<div class="form-box">
<iframe class="google-form" src="https://docs.google.com/forms/d/e/1FAIpQLSeuNS2ahrN7YvAeFUV4v9YCPNzZu-6UwRYGt3JTBeDF-Vie9A/viewform?embedded=true">
</iframe>
</div>
<hr>
<footer>
<p class="footer-text">
CST336 Internet Programming. 2025© Nguyen, Rodriguez, Romo, Pham
</p>
<p class="footer-text">
Disclaimer: The information in this webpage is fictious. It is used for academic purposes only.
</p>
<img src="images/csumb.png" alt="CSUMB Logo" class="logo">
</footer>
</div>
</body>