-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
46 lines (40 loc) · 1.27 KB
/
profile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/styles/style.css" />
<title>My profile</title>
</head>
<body>
<nav>
<a href="./reflect/index.html">💜Community Reflection</a>
<a href="/motivation/index.html">🌟Little Light</a>
<a href="./index.html" id="indx-link">🏡Home</a>
</nav>
<div class="landscape">
<div class="mountain"></div>
<div class="mountain mountain-2"></div>
<div class="mountain mountain-3"></div>
<div class="water"></div>
<div class="splash"></div>
<div class="splash splash-stone splash-4"></div>
<div class="splash splash-stone"></div>
<div class="lotus lotus-1"></div>
<div class="lotus lotus-2"></div>
<div class="lotus lotus-3"></div>
<div class="front">
<div class="stone"></div>
</div>
</div>
<div class="profile-wrapper">
<h1>User Profile</h1>
<div id="profile">
<img id="user-photo" src="" alt="User Photo" />
<h2 id="user-name"></h2>
<h4 id="user-email"></h4>
</div>
</div>
<script type="module" src="./source/profile.js"></script>
</body>
</html>