-
Notifications
You must be signed in to change notification settings - Fork 0
/
psychological-test5.php
executable file
·66 lines (56 loc) · 2.56 KB
/
psychological-test5.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
<?php
require './parts/connect-db.php';
$pageName = 'psychological-test5';
$title = '第五題';
?>
<?php include __DIR__ . '/parts/html-head.php' ?>
<!-- 這邊會放該頁需要的css 如同下面 -->
<!-- <link rel="stylesheet" href="./css/shopping_cart.css"> -->
<link rel="stylesheet" href="css/psychological-test.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet">
<?php include __DIR__ . '/parts/html-navbar.php' ?>
<!-- 這邊會放該頁需要的html -->
<section class="hero-section">
<div class="card-grid">
<h2 style="cursor: default;">Q5 你最喜歡哪種類型的男生?</h2>
<a class="card card-wrap" href="psychological-test6.php">
<div class="card__background" style="background-image: url(imgs/psychological-test/未選擇.png)"></div>
<div class="card__content-other">
<p class="card__category">1</p>
<h3 class="card__heading">天然呆純潔</h3>
</div>
</a>
<a class="card card-wrap" href="psychological-test7.php">
<div class="card__background" style="background-image: url(imgs/psychological-test/未選擇.png)"></div>
<div class="card__content-other">
<p class="card__category">2</p>
<h3 class="card__heading">聰明平和寬厚</h3>
</div>
</a>
<a class="card card-wrap" href="psychological-test8.php">
<div class="card__background" style="background-image: url(imgs/psychological-test/未選擇.png)"></div>
<div class="card__content-other">
<p class="card__category">3</p>
<h3 class="card__heading">腹黑抖S</h3>
</div>
</li>
<a class="card card-wrap" href="psychological-test9.php">
<div class="card__background" style="background-image: url(imgs/psychological-test/未選擇.png)"></div>
<div class="card__content-other">
<p class="card__category">4</p>
<h3 class="card__heading">天才敏銳</h3>
</div>
</a>
<a class="card card-wrap" href="psychological-test10.php">
<div class="card__background" style="background-image: url(imgs/psychological-test/未選擇.png)"></div>
<div class="card__content-other">
<p class="card__category">5</p>
<h3 class="card__heading">溫柔會照顧人</h3>
</div>
</a>
<div>
</section>
<?php include __DIR__ . '/parts/html-script.php' ?>
<script>
</script>
<?php include __DIR__ . '/parts/html-last.php' ?>