-
Notifications
You must be signed in to change notification settings - Fork 0
/
psychological-test1.php
executable file
·65 lines (56 loc) · 2.58 KB
/
psychological-test1.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
<?php
require './parts/connect-db.php';
$pageName = 'psychological-test1';
$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;" >Q1 如果有人對你指教,你會回什麼?</h2>
<a class="card-wrap card" href="psychological-test2.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">Mind your own business.</h3>
</div>
</a>
<a class="card-wrap card" href="psychological-test2.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">Don’t tell anyone to do things.</h3>
</div>
</a>
<a class="card-wrap card" href="psychological-test2.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">I’m FINE.</h3>
</div>
</li>
<a class="card-wrap card" href="psychological-test2.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">FXXK YOU!</h3>
</div>
</a>
<a class="card-wrap card" href="psychological-test2.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">what happen?</h3>
</div>
</a>
<div>
</section>
<?php include __DIR__ . '/parts/html-script.php' ?>
<script>
</script>
<?php include __DIR__ . '/parts/html-last.php' ?>