-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
108 lines (103 loc) · 5.01 KB
/
contact.html
File metadata and controls
108 lines (103 loc) · 5.01 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Personal Resume Website</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- nav bar section -->
<nav class="navbar navbar-expand-lg bg-body-tertiary bg-dark" data-bs-theme="dark">
<div class="container-fluid">
<div class="homepage">
<a id="front-page" class="navbar-brand" href="index.html">Evan Cheng</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="menu">
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item">
<a id="about-me" class="nav-link active" aria-current="page" href="aboutme.html">About Me</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="project-intro" href="projectIntro.html" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Projects
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item project-1" href="https://scheng0718.github.io/adele-power/" target="_blank">Adele's
Power</a></li>
<li><a class="dropdown-item project-2" href="https://scheng0718.github.io/boba_tea_lover/" target="_blank">Boba Tea
Lover</a></li>
<li><a class="dropdown-item project-3" href="https://scheng0718.github.io/world_of_cinema/" target="_blank">World of
Cinema</a></li>
<li><a class="dropdown-item project-4" href="https://scheng0718.github.io/stay_organized/" target="_blank">Stay
Organized</a></li>
</ul>
</li>
<li class="nav-item">
<a id="contact" class="nav-link" href="#">Contact</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
<!-- Content -->
<div class="container" id="content-container">
<div class="d-flex align-items-center justify-content-center" style="height: 100vh;">
<form class="row g-3">
<h1>Send me a message!</h1>
<div class="col-md-6">
<label for="inputEmail4" class="form-label">Name</label>
<input type="email" class="form-control" id="inputEmail4">
</div>
<div class="col-md-6">
<label for="inputPassword4" class="form-label">Email Address</label>
<input type="password" class="form-control" id="inputPassword4">
</div>
<div class="col-12">
<label for="inputAddress" class="form-label">What's on your mind?</label>
<input type="text" class="form-control" id="inputAddress" placeholder="feedback?">
</div>
<div class="col-12 d-flex justify-content-center">
<button type="submit" class="btn btn-primary m-5">Submit</button>
</div>
</form>
</div>
</div>
<!-- Footer -->
<footer class="footer fixed-bottom bg-dark" data-bs-theme="dark">
<div class="profile">
<div class="social-links my-3 text-center">
<a href="https://www.linkedin.com/in/evan-c-9978a681/" target="_blank" class="linkedin m-3"><i
class="fa-brands fa-linkedin-in fa-2xl"></i></a>
<a href="https://github.com/scheng0718" target="_blank" class="github m-3"><i class="fa-brands fa-github fa-2xl"
style="color: #e0e0e0;"></i></a>
<a href="https://www.youtube.com/" target="_blank" class="youtube m-3"><i class="fa-brands fa-youtube fa-2xl"
style="color: #2e8b57;"></i></a>
<a href="https://www.facebook.com/evancheng073/" target="_blank" class="facebook m-3"><i
class="fa-brands fa-facebook fa-2xl" style="color: #ffcc00;"></i></a>
</div>
</div>
</footer>
<!-- axios -->
<script src="https://cdn.jsdelivr.net/npm/axios@1.1.2/dist/axios.min.js"></script>
<!-- bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe"
crossorigin="anonymous"></script>
<!-- FontAwesome -->
<script src="https://kit.fontawesome.com/9e56d8ec62.js" crossorigin="anonymous"></script>
<script src="./index.js"></script>
</body>
</html>