-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
113 lines (109 loc) · 5.24 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
109
110
111
112
113
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Contact</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="Assets/CSS/style.css" rel="stylesheet">
<!-------link to jQuery file-->
<script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-------link to Materialize-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/js/materialize.js"></script>
<!-------link to CSS Reset file-->
<link rel="stylesheet" type="text/css" href="Assets/CSS/Reset.css">
<!-- link to the custom css file -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link type="text/css" rel="stylesheet" href="Assets/CSS/material.css" media="screen,projection"/>
<link href="Assets/CSS/style.css" rel="stylesheet" >
<!-------link to Fontawesome-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.12.0/css/all.css">
<!-------link to GoogleFonts-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Rock+Salt&display=swap" rel="stylesheet">
</head>
<body>
<header>
<!-- Navbar (sit on top) -->
<nav>
<div class="nav-wrapper">
<a href="index.html" class="nameBar" style="margin: 0; padding-left: 10px;">Karna Cutolo</a>
<a href="#" data-target="mobile-demo" class="sidenav-trigger"><i class=
"material-icons" style= "color: #3f51b5;">menu</i></a>
<ul class="right hide-on-med-and-down" id="nav-mobile">
<li><a href="index.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<ul class="right sidenav" id="mobile-demo">
<li><a href="index.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</header>
<main class="container" id="contactForm" style="background-color: #ffffff;
margin-top: 20px; margin-bottom: 20px">
<div class="row">
<div class= "col s12">
<h3 class= "center" style="color: #3f51b5";>Contact</h3>
</div>
</div>
<div class="row">
<form action="">
<div class="input-field col s12" id="inputValue">
<i class="material-icons prefix" id="inputIcons">account_circle</i>
<input id="icon_prefix" type="text">
<label for="icon_prefix">Full Name</label>
</div>
</div>
<div class="row">
<div class="input-field col s12" id="inputValue">
<i class="material-icons prefix" id="inputIcons">email</i>
<input id="icon_prefix" type="text">
<label for="icon_prefix">Example@gmail.com</label>
</div>
</div>
<div class="row">
<div class="container">
<div class="input-field col s12" id="msgBox">
<i class="material-icons prefix" id="inputIcons">mode_edit</i>
<input id="icon_prefix" type="text">
<label for="icon-prefix">Type Message Here!</label>
<a class="btn-floating right btn-large waves-effect waves-light
indigo darken-4" type="submit" name="action">
<i class="material-icons center" id="inputIcon2">message</i></a>
<h4 class="center" style="color: #3f51b5;"></h4>
</div>
</div>
</div>
</form>
</main>
<footer class="page-footer fixed">
<div class="container col s12">
<div class="row center-align" style="margin: 0px; font-size: 16px;
font-weight: bold;" id="socLinks">
<a href="https://github.com/karna1014/" target="_blank"><i class="fab fa-github"
id="ftrIcon"></i> </a>
<a href="./Assets/Images/KCutolo-Resume-2020.pdf" target="_blank"><i class="fas fa-file"
id="ftrIcon"></i> </a>
<a href="https://linkedin.com/in/karnacutolo/" target="_blank"><i class="fab fa-linkedin"
id="ftrIcon"></i> </a>
<div class="row center-align" id="info" style="padding-top: 10px; margin: 0px; font-size: 14px;
color: #04166e;">karna.cutolo@gmail.com | 484.557.9965</div>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container center-align" id="ftrCpy" style=" width: 100%;
color: #04166e; padding: 0px;">Copyright ©2019 All rights reserved |
This is my Portfolio
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src= "script.js"></script>
<script type="text/javascript" src="./materialize.js"></script>
</body>
</html>