-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
69 lines (65 loc) · 2.45 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
<!DOCTYPE html>
<html>
<head>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<title>Dan's Portfolio</title>
</head>
<body>
<div class="header">
<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>
<span style="float:left;">
<i>Portfolio</i>
</span>
</div>
<div class="container">
<div class="main">
<div class="bordercontact">
<p><img src="./images/download.jpeg" alt="A photo of Dan" height=150px width=150px></p>
<div align="center" style="margin-top: 10px;">
<h2>Phone contacts: 0711444518</h2>
<h2>Emai: [email protected]</h2>
</div>
<div align="center">
<h3 style="margin-top: 30px;">If you desire having a project done, kindly fill in the form below.
</h3>
<form style="margin-top: 10px;">
<table>
<tr>
<td>Name:</td>
<td><input name="Name" type="text"></td>
<br>
</tr>
<tr>
<td>Email:</td>
<td><input name="Name" type="text" </td>
</tr>
<tr>
<td>Budget:</td>
<td><input name="Name" type="text" </td>
</tr>
<tr>
<td style="float:left;">Project requirements:</td>
<td><textarea cols="21" rows="4"></textarea></td>
</tr>
<tr>
<td><input type="submit"></td>
</tr>
</table>
</form>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="wrapper">
<p style="margin-top: 20px;"> Mathematician and Scientist</p>
<p>Copyright 2018. Dan's Portfolio. All Rights Reserved.</p>
</div>
</div>
</body>
</html>