-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmatching.html
61 lines (58 loc) · 2.17 KB
/
matching.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>cura - matching</title>
<link rel="stylesheet" href="./style.css" />
<script defer src="script.js"></script>
<link rel="icon" href="./pictures/Untitled_Artwork.png" type="png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Nunito&display=swap"
rel="stylesheet"
/>
</head>
<body>
<a href="./chat.html"
><img src="./pictures/chat.png" alt="chat icon" id="chat" />
</a>
<img src="./pictures/Vector.svg" alt="" class="blob" id="pinkblob" />
<img src="./pictures/vector2.svg" alt="" class="blob" id="blueblob" />
<img src="./pictures/vector4.svg" alt="" class="blob" id="purpleblob" />
<div class="yellow-box">
<div id="img">
<img src="./pictures/trixie.png" alt="profile picture" id="pfp" />
</div>
<div id="info">
<p><strong>name:</strong> jane doe</p>
<p><strong>age:</strong> 27</p>
<p><strong>pronouns:</strong> she/her</p>
<p><strong>education:</strong> BASc from MIT</p>
<p><strong>field of interest:</strong> engineering</p>
<p><strong>current company:</strong> google</p>
</div>
<div id="buttons">
<button data-popup-target="#popup">match!</button>
<!-- pop-up starts-->
<div class="popup" id="popup">
<div class="popup-header">
<div class="title">
<h3>get unlimited matches with cura premium</h3>
</div>
<div data-close-button class="close-button">×</div>
</div>
<div class="popup-body">
A portion of the profits earned will be donated towards non-profit
organizations focused on our mission statement of bridging the
gender gap in tech! :)
</div>
</div>
<div id="overlay"></div>
<!-- pop-up ends -->
<button>next ➜</button>
</div>
</div>
</body>
</html>