-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
91 lines (74 loc) · 2.42 KB
/
contact.html
File metadata and controls
91 lines (74 loc) · 2.42 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css" title="normal">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="alternate stylesheet" href="dark.css" title="dark">
<link rel="shortcut icon" href="favicon.ico">
<title>My Portfolio</title>
</head>
<body>
<div id="container">
<div id="head">
<header>
<div class="head">
<nav class="nav">
<ul class="navlist">
<li class="navli">
<a href="index.html" class="navlink">Home</a>
</li>
<li class="navli">
<a href="about.html" class="navlink">About</a>
</li>
<li class="navli">
<a href="work.html" class="navlink">My Work</a>
</li>
</ul>
</nav>
</div>
</header>
</div>
<div id="body">
<h1>Contact Me:</h1>
<form action="write.php" method="post" enctype="text/plain">
<!--This div creates a Bootstrap form, so that all of the form elements can be styled appropriately-->
<div class="form-group">
<label for="InputEmail">Your Email</label>
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter your email" name="email">
</div>
<div class="form-group">
<label for="InputName">Your Name</label>
<input type="username" class="form-control" id="exampleInputUsername1" placeholder="Enter your name" name="name">
</div>
<div class="form-group">
<label for="Message">Your Message</label>
<textarea class="form-control" id="message" rows="3" placeholder="Your message goes here" name="message"></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
<br>
<p>email: romano@hotmail.com.hk</p>
<p>phone: 07826847140</p>
</div>
<div id = "footer">
<footer>
<p class="name" style="padding-bottom:10px;">Website by Romano Agostini™</p>
<p class="name">Themes:</p>
<nav class="theme">
<ul class="themelist">
<li class="themeli">
<a class="themelink" onclick="switch_style('dark')">Dark</a>
</li>
<li class="themeli">
<a class="themelink" onclick="switch_style('normal')">Normal</a>
</li>
</ul>
</nav>
</body>
</footer>
</div>
</div>
<script src="Javascript/javascript.js" type="text/javascript"></script>
</body>
</html>