-
Notifications
You must be signed in to change notification settings - Fork 0
/
psychological-home-nologin.php
executable file
·83 lines (73 loc) · 3.33 KB
/
psychological-home-nologin.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
require './parts/connect-db.php';
$pageName = 'psychological-home';
$title = 'Who Is My Soulmate?';
?>
<?php include __DIR__ . '/parts/html-head.php' ?>
<!-- 這邊會放該頁需要的css 如同下面 -->
<!-- <link rel="stylesheet" href="./css/shopping_cart.css"> -->
<link rel="stylesheet" href="css/psychological-test-home.css">
<link rel="stylesheet" href="css/psychological-test-home-btn.css">
<?php include __DIR__ . '/parts/html-navbar-nologin.php' ?>
<!-- 這邊會放該頁需要的html -->
<section class="hero-section">
<div class="card-grid">
<h2>Psychological test</h2>
<p class="text">趣味心理測驗</p>
<a class="card" href="#">
<div class="card__background" style="background-image: url(imgs/psychological-test/FNuZ4aQVcAQFaF1.jpeg)"></div>
<div class="card__content">
<p class="card__category"></p>
<h3 class="card__heading"></h3>
</div>
</a>
<a class="card" href="#">
<div class="card__background" style="background-image: url(imgs/psychological-test//FNuZ4ZjVsAYlKWa.jpeg)"></div>
<div class="card__content">
<p class="card__category"></p>
<h3 class="card__heading"></h3>
</div>
</a>
<a class="card" href="#">
<div class="card__background" style="background-image: url(imgs/psychological-test/FNuZ31UVgAMSN0r.jpeg)"></div>
<div class="card__content">
<p class="card__category"></p>
<h3 class="card__heading"></h3>
</div>
</li>
<a class="card" href="#">
<div class="card__background" style="background-image: url(imgs/psychological-test/FNuZ31VVIAMfEXA.jpeg)"></div>
<div class="card__content">
<p class="card__category"></p>
<h3 class="card__heading"></h3>
</div>
</a>
<a class="card" href="#">
<div class="card__background" style="background-image: url(imgs/psychological-test/FNuZ318UcAAURpk.jpeg)"></div>
<div class="card__content">
<p class="card__category"></p>
<h3 class="card__heading"></h3>
</div>
</a>
<div>
<form class="qusetion">
Who Is My Soulmate?
<input style="margin-left:200px; margin-top:40px; border:3px solid #D3B572; border-radius:5px;" type="text"placeholder="Name 姓名">
</form>
<div class="answer">
<div class="arrow-wrap">
<span>誰是你的靈魂伴侶?</span>
<svg width="237" height="24" viewBox="0 0 237 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M236.061 13.0607C236.646 12.4749 236.646 11.5251 236.061 10.9393L226.515 1.3934C225.929 0.807611 224.979 0.807611 224.393 1.3934C223.808 1.97919 223.808 2.92893 224.393 3.51472L232.879 12L224.393 20.4853C223.808 21.0711 223.808 22.0208 224.393 22.6066C224.979 23.1924 225.929 23.1924 226.515 22.6066L236.061 13.0607ZM0 13.5H235V10.5H0V13.5Z" fill="#D3B572"/>
</svg>
<!-- <span class="arrow"></span> -->
</div>
</div>
<div class="wrapper">
<a href="psychological-test1.php" class="button">NEXT</a>
</div>
</section>
<?php include __DIR__ . '/parts/html-script.php' ?>
<script>
</script>
<?php include __DIR__ . '/parts/html-last.php' ?>