-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (107 loc) · 5.05 KB
/
Copy pathindex.html
File metadata and controls
112 lines (107 loc) · 5.05 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="COFFEE MINUTE" />
<meta name="author" content="PMCCC" />
<meta name="viewport" content="width=device-width, initial scale=1.0" />
<link rel="stylesheet" href="style.css" />
<style>
@import url('https://fonts.googleapis.com/css2?family=Limelight&display=swap');
</style>
<title>COFFEE MINUTE</title>
</head>
<body>
<header id="header">
<h1>COFFEE MINUTE</h1>
</header>
<nav id="navbar">
<ul>
<li><a href=#>HOME</a></li>
<li><a href="#sect-coffee">COFFEE</a></li>
<li><a href="#contact-form">CONTACT</a></li>
</ul>
</nav>
<button type="button" id="btn-dropdown" class="btn-pressdown">▶ Press Me</button>
<div class="main-flex-container">
<aside id="aside">
<div class="aside-flex-container">
<!-- AVATAR & SELF-INTRODUCTION ABOUT THE LOVE FOR COFFEE -->
<img src="img/avatar.png" alt="avatar">
<p>
OOOOO <br><br>
PROGRAMMING is best paired with COFFEE.
</p>
<p>
Hot? Cold? Both.
</p>
<p>
Coffee In. <br> Algorithm Out.
<br><br> OOOOO
</p>
</div>
</aside>
<section id="section">
<div id="sect-welcome">
<!-- WELCOME SECTION -->
<h2>Hi, Generous!</h2>
<h3>Thank you for taking the time to ping me.</h3>
<h3>Your support is highly appreciated.</h3>
</div>
<div id="sect-coffee">
<!-- COFFEE LIST WITH PHOTO -->
<!-- COFFEE DONATION -->
<h2>~ COFFEE REFILL MENU ~</h2>
<div class="flexwrap-coffeelist">
<div class="flex-coffee-img">
<img src="img/greattaste_choco_twinpack.png">
<div class="flex-coffee-details">PHP20.00<br>Twin Pack</div>
<button type="button" class="btn-refill">REFILL NOW</button>
</div>
<div class="flex-coffee-img">
<img src="img/greattaste_choco_singlebundle.png">
<div class="flex-coffee-details">PHP80.00<br>Single Bundle</div>
<button type="button" class="btn-refill">REFILL NOW</button>
</div>
<div class="flex-coffee-img">
<img src="img/greattaste_choco_twinpackbundle.png">
<div class="flex-coffee-details">PHP160.00<br>Twin Pack Bundle</div>
<button type="button" class="btn-refill">REFILL NOW</button>
</div>
</div>
</div>
<div class="modal-refill-container">
<div class="modal-refill-details">
<img src="img/qr_refill.png" alt="qr_refill">
</div>
</div>
<div id="sect-contact">
<!-- CONTACT -->
<h2>FOR ANY INQUIRY OR FEEDBACK</h2>
<div class="flex-contact-container">
<form id="contact-form" action="https://formsubmit.co/cc9ffa7d56c96996366e95c9f9c0dafc" method="POST">
<div>
<div class="form-label">Email:</div>
<input name="email" type="email" class="form-control" required />
</div>
<div>
<div class="form-label">Subject:</div>
<input name="subject" class="form-control" required />
</div>
<div>
<div class="form-label">Message:</div>
<textarea name="message" class="form-control" rows="8" placeholder="Please leave a message here. . ." required></textarea>
<input type="hidden" name="_next" value="https://pmccc-profile.github.io/ping-me?sent=true">
<button type="submit" class="btn-submit">Submit</button>
</div>
</form>
</div>
</div>
</section>
</div>
<footer id="footer">
<p>Copyright 2025. PMCCC.</p>
</footer>
<script src="script.js" defer></script>
</body>
</html>