-
Notifications
You must be signed in to change notification settings - Fork 0
/
psychological-test2.php
executable file
·45 lines (37 loc) · 1.88 KB
/
psychological-test2.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
<?php
require './parts/connect-db.php';
$pageName = 'psychological-test2';
$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;">Q2 你對複雜的星巴克飲料單有什麼看法呢?</h2>
<a class="card card-wrap" href="psychological-test3.php">
<div class="card__background" style="background-image: url(imgs/psychological-test/未選擇.png)"></div>
<div class="card__content">
<p class="card__category">1</p>
<h3 class="card__heading">我不點複雜的飲料,因為不想讓員工感到麻煩</h3>
<!-- <h3 class="card__heading">我不點複雜的飲料,因為我為工人感到難過,或者我對菜單上的東西很好。</h3> -->
</div>
</a>
<a class="card card-wrap" href="psychological-test3.php">
<div class="card__background" style="background-image: url(imgs/psychological-test/未選擇.png)"></div>
<div class="card__content">
<p class="card__category">2</p>
<h3 class="card__heading">我會點複雜的飲料,想要享受飲料裡特殊的風味</h3>
<!-- <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' ?>