-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
104 lines (101 loc) · 5.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Responsive configurations -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- Bootstrap Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css">
<!-- CSS style -->
<link href="styles.css" rel="stylesheet">
<title>JP Web</title>
<script>
function submitted(){
document.getElementById('form_div').innerHTML = "Thank you, I will answer you as soon as possible!";
}
</script>
</head>
<body style="background-color:#F0FFFF">
<!-------------------Navegation Start--------------------->
<nav class="navbar navbar-expand-lg fixed-top navbar-dark bg-dark">
<div class="container-fluid py-3 px-5">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0 mx-auto">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="portfolio.html">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="aboutme.html">About me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-------------------Navegation End------------------->
<!-------------------Content Start------------------>
<div class="heading-content-aboutme text-center">
<h1>CONTACT</h1>
<!--------Form for contac---------->
<div class="forms" id="form_div">
<h5 class="py-4">Send me a message!</h5>
<div class="form-group">
<label for="email_input">Email address</label>
<input type="email" class="form-control" name="email_input" id="email_input" placeholder="name@example.com">
</div>
<div class="form-group">
<label for="message_input">Message</label>
<textarea class="form-control" id="message_input" rows="6" name="message_input"></textarea>
<br>
</div>
<div>
<button class="btn btn-dark" type="submit" id="button_input" onclick="submitted()">Send</button>
</div>
</div>
</div>
<!-------------------Content End------------------->
<!------------------- Footer Start------------------------>
<footer class="bg-dark text-center text-white" id="footer" style="background: rgba(0,0,0,0.6) !important;">
<!-- Grid container -->
<div class="container p-2 pb-0">
<!-- Section: Social media -->
<section class="mb-2">
<!-- Linkedin -->
<a class="btn btn-outline-light btn-floating m-1" href="https://www.linkedin.com/in/jpcastros/" role="button"
><i class="bi bi-linkedin"></i
></a>
<!-- Github -->
<a class="btn btn-outline-light btn-floating m-1" href="https://github.com/PedrobyJoao" role="button"
><i class="bi bi-github"></i
></a>
<!-- Instagram -->
<a class="btn btn-outline-light btn-floating m-1" href="#!" role="button"
><i class="bi bi-instagram"></i
></a>
</section>
<!-- Section: Social media -->
</div>
<!-- Grid container -->
<!-- Copyright -->
<div class="text-center p-1" style="background-color: rgba(0, 0, 0, 0.2);">
© 2022 Copyright:
<a class="text-white" href="index.html">João Pedro</a>
</div>
<!-- Copyright -->
</footer>
<!-------------------------Footer End------------------------->
<!-- Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>