forked from Sambalicious/final-user-profile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile page.html
139 lines (123 loc) · 5.68 KB
/
profile page.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!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>Profile page</title>
<link rel="stylesheet" href="profile_page.css">
<script src="https://kit.fontawesome.com/f618f790f8.js"></script>
<link href="https://fonts.googleapis.com/css?family=Raleway&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="profile_page.css">
<script src="https://kit.fontawesome.com/f618f790f8.js"></script>
<link href="https://fonts.googleapis.com/css?family=Lato|Raleway|Source+Sans+Pro&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<nav>
<div class="header">
<div class="logo">
<a href="home.html"><img
src="https://res.cloudinary.com/dcczd9zz5/image/upload/v1567174130/ff_nbwkbr.png"></a>
</div>
<ul class="menu">
<a href="#">Home</a>
<a href="#">Projects</a>
<a href="#">Contact Us</a>
<a href="profile page.html">Profile</a>
<a href="team.html">Team</a>
<a href="about.html">About Us</a>
<a href="signin.html" id="menu-highlight"><button class="login-btn" type="button">Login</button></a>
</ul>
</div>
</nav>
</header>
<div class="main">
<h2>User Profile</h2>
<div class="form">
<form action="#" name="form_name" class="form_submit" onsubmit="return submitForm()">
<div class="name_phone">
<div class="name">
<span>Name</span> <input type="text" placeholder="Fullname" required>
</div>
<div class="phone">
<span>Phone</span> <input type="text" placeholder="Enter Phone" required>
</div>
</div>
<div class="email_add">
<div class="email">
<span>Email</span> <input type="email" placeholder="Email address" required>
</div>
<div class="address">
<span>Address</span> <input type="text" placeholder="Enter address" required>
</div>
</div>
<div>
<button class="upload_btn2"> <a href="firststage.html">Previous Page</a> </button>
<span class="justify-submit">
<input type="submit" class="submit" value="Submit">
</span>
</div>
</form>
</div>
</div>
<footer>
<div class="logo">
<a href="home.html"><img
src="https://res.cloudinary.com/dcczd9zz5/image/upload/v1567174130/ff_nbwkbr.png"></a>
</div>
<div class="footer-contents">
<div class="about">
<h4>About Us</h4>
<p>TaxIt.NG is a financial non-governmental organisation built by a team of young interns and change
agents
to solve the persisting problem of tax collection and poor accountable utilisation of tax revenue to
create social development and benefits
to taxpayers... <a href="">More</a> </p>
</div>
<div class="news">
<h4>Newsletter</h4>
<p>Stay updated with our latest news & products</p>
<div id="embed-signup">
<form target="_blank"
action="https://spondonit.us12.list-manage.com/subscribe/post?u=1462626880ade1ac87bd9c93a&id=92a4423d01"
method="get" class="subscribe_form relative">
<div>
<input name="EMAIL" placeholder="Email Address" onfocus="this.placeholder = ''"
onblur="this.placeholder = 'Email Address '" required="" type="">
<button id="go-btn">Go</button>
</div>
</form>
</div>
</div>
<div class="contact">
<h4>Contact Us</h4>
<p>3, Birrel Avenue <br> Yaba, Lagos <br>
<a href="mailto:[email protected]">[email protected]</a> <br> 01-2345678 <br> 08489102638, 8920271538. <br>
</p>
</div>
<div class="social">
<h4>Follow Us</h4>
<div class="sm">
<a href="#"><i class="fab fa-twitter"></i></a>    
<a href="#"><i class="fab fa-facebook-square"></i></a>    
<a href="#"><i class="fab fa-instagram"></i></a>    
<a href="#"><i class="fab fa-whatsapp"></i></a>    
<a href="#"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<div class="copyright">
<p>
Copyright ©
<script>
document.write(new Date().getFullYear());
</script>     All rights reserved | Team Helsinki </p>
</div>
</div>
</footer>
<script src="profile_page.js"></script>
</body>
</html>