-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
108 lines (81 loc) · 3.31 KB
/
contact.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
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.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Contact Me</title>
<link rel="stylesheet" href="contact.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<header class="text-center container-fluid" id="header">
<h1 class="display_name"> Cintiha K. Rosas-Gordillo </h1>
<div class="links" id="links">
<ul type="none">
<div id="popup" style="display: none;"> Email</div>
<a href="mailto:[email protected]" style="font-size: 26px; color:black; "> Click Here Send Direct Email</a>
</ul>
</div>
<br>
</header><!-- this is the end of my header-->
<!-- this is my nav bar on the top of my page -->
<section>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</section>
<!-- end of the nav bar -->
<!-- contact form container -->
<div class='form'>
<h1 class="formname">CONTACT FORM</h1>
<form>
<label for='name'>Name </label> <p> (required) </p>
<input type='text' id=name name='name' placeholder="EX. Katie Rosas" required><br><br>
<label for='email'>Email Address </label> <p> (required) </p>
<input type="email" id= 'email' name="email" placeholder="EX. [email protected]" required><br><br>
<label for='comments'>Message </label>
<textarea id="comments" name="comments" style='height:80px' cols="65"></textarea><br>
<button class="btn" value="Submit" aria-label="submit"> Submit</button>
</form>
</div>
</div>
<!-- end of contact form -->
<!-- links for linked in, resume and certificications -->
<div class="row"> <!-- ROW 2-->
<div class="column">
<a href="https://www.linkedin.com/in/cintiha-katie-rosas-gordillo-1571b3187/">
<img class="linked_in" src="../code/images/LinkedIn.jpg" alt="linked-in logo">
Linked-In Profile
</a>
</div>
<div class="column">
<a href="https://courses.edx.org/certificates/3dd13d70e2bb47e1b45e876ffb480899">
<img class="certification" src="../code/images/certificatiom.png" alt="certification logo">
Certificate
</a>
</div>
<div class="column">
<a href="../code/images/resume_cintiha_rosas.pdf">
<img class="resume" src="../code/images/resume_logo.png" alt="resume logo">
Resume
</a>
</div>
</div> <!-- END OF ROW2-->
<!-- end of linked in, certifications and resume -->
<!-- this is for the footer-->
<div class="footer">
<footer>
<p> Cintiha Rosas-Gordillo, B.S. Computer Science & Business Administration, Portland State University, Web Portfolio</p>
</footer>
</div>
<!-- end of footer -->
</body>
</html>