-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.php
62 lines (58 loc) · 2.28 KB
/
profile.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile</title>
<link rel="stylesheet" href="./css/main.css">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
<script src="https://kit.fontawesome.com/b99e675b6e.js"></script>
</head>
<body>
<?php
include "menu.php";
?>
<main class="section">
<div class="container">
<div class="wrapper" style="padding-top: 0px;">
<div class="left">
<i class="fas fa-brain" style="font-size: xx-large; margin-bottom: 5px;"></i>
<h4 style="font-size:32px;">VeroKate</h4>
<p style="font-size:16px;">Expert</p>
</div>
<div class="right">
<div class="info">
<h3>Information</h3>
<div class="info_data">
<div class="data">
<h4>Your qualification</h4>
<p>Respondent</p>
</div>
<div class="data">
<h4>Full Name</h4>
<p>Пухляш</p>
</div>
<div class="data">
<h4>Age</h4>
<p>1500</p>
</div>
<div class="data">
<h4>Gender</h4>
<p>Ж</p>
</div>
</div>
</div>
<div class="social_media">
<ul>
<li><a href="#"><i class='fas fa-envelope'></i></a></li>
<li><a href="#"><i class="fas fa-sign-out-alt"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</main>
<script src="./js/menu.js"></script>
</body>
</html>