-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
53 lines (49 loc) · 2.5 KB
/
Copy pathcontact.html
File metadata and controls
53 lines (49 loc) · 2.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact — Pocket Weather</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<img src="images/cloud.jpg" class="cloud-banner" alt="Decorative cloud banner">
<!-- HEADER -->
<div class="hero" style="min-height: 260px;">
<div class="hero-bg"></div>
<header class="hero-content">
<a href="index.html" class="back-link">← Back to Weather</a>
<h1 class="hero-title" style="font-size: clamp(1.8rem, 4vw, 2.8rem);">Contact</h1>
<p class="hero-sub">Find the project on GitHub below.</p>
</header>
</div>
<!-- LINKS -->
<main style="padding: 40px clamp(16px, 4vw, 60px); flex: 1; background: linear-gradient(180deg, var(--sky-low) 0%, #1c3f5e 100%);">
<div class="card" style="max-width: 480px; margin: 0 auto;">
<div class="card-header">🔗 Links</div>
<p style="font-size: 0.95rem; line-height: 2; color: var(--text-main);">
<a href="https://github.com/sarahh1201/html-weather-app/tree/main" target="_blank" style="color: var(--accent); text-decoration: none;">
GitHub Repository ↗
</a>
<br>
<a href="https://sarahh1201.github.io/portfolio/" target="_blank" style="color: var(--accent); text-decoration: none;">
Personal Website ↗
</a>
</p>
</div>
</main>
<!-- FOOTER -->
<footer class="footer">
<div class="footer-content">
<span>Powered by <a href="https://www.weatherapi.com/" target="_blank">WeatherAPI.com</a></span>
<span class="footer-dot">·</span>
<a href="https://github.com/sarahh1201/html-weather-app/tree/main" target="_blank">GitHub</a>
<span class="footer-dot">·</span>
<a href="contact.html">Contact</a>
</div>
</footer>
</body>
</html>