-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweatherapp.html
96 lines (88 loc) · 3.54 KB
/
weatherapp.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
<style>
.custom-red-header {
background-color: #6e9b5d; /* Replace with the hexadecimal value of $red-400 */
/* You may also need to adjust other styles like text color for better contrast */
color: #fff; /* White text color for better contrast */
}
</style>
<style>
.top-item{
padding-right: 2%;
}
</style>
</head>
<body>
<header class="custom-red-header">
<div class="top-item">
<h1 class="text-end display-6 fw-semibold ">Tshidiso's Portfolio</h1>
<p class="text-end">Here for your software desires</p>
</div>
</header>
<nav class="navbar navbar-expand-lg navbar-light bg-light justify-content-end">
<div class="container">
<ul class="nav-underline navbar-nav">
<li class="nav-item"><a class="nav-link" href="index.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#">Projects</a></li>
<li class="nav-item"><a class="nav-link" href="#">Documents</a></li>
<li class="nav-item"><a class="nav-link" href="#">Contact</a></li>
</ul>
</div>
</nav>
<div class="container mt-5">
<div class="project-container">
<h1 class="center-text">1Weather Web 333Application</h1>
<div class="project-image-container">
<img src="weather.png" alt="Weather Project" width="700" height="600">
</div>
<div class="project-details">
<h2>Project Title</h2>
<p>Project description...</p>
<h3>Technologies Used</h3>
<ul>
<li>React</li>
<li>Axios</li>
<li>Meterial UI</li>
</ul>
<h3>Challenges and Solutions</h3>
<p>...</p>
</div>
</div>
</div>
<footer class="bg-light text-center text-lg-start mt-5">
<div class="container p-4">
<div class="row">
<div class="col-lg-6 col-md-12 mb-4 mb-md-0">
<h5 class="text-uppercase">About Me</h5>
<p>Highly motivated Computer Science & Economics graduate with a passion for solving complex problems and a keen interest in the tech and finance sectors.</p>
</div>
<div class="col-lg-3 col-md-6 mb-4 mb-md-0">
<h5 class="text-uppercase">Links</h5>
<ul class="list-unstyled mb-0">
<li><a href="#" class="text-dark">Home</a></li>
<li><a href="#" class="text-dark">Projects</a></li>
<li><a href="#" class="text-dark">Documents</a></li>
<li><a href="#" class="text-dark">Contact</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-6 mb-4 mb-md-0">
<h5 class="text-uppercase">Contact</h5>
<ul class="list-unstyled mb-0">
<li><a href="tel:0655363891" class="text-dark">0655363891</a></li>
<li><a href="mailto:tshidisomahlo05@gmail.com" class="text-dark">tshidisomahlo05@gmail.com</a></li>
</ul>
</div>
</div>
</div>
<div class="copyright text-center p-3">
© 2024 Tshidiso Mahlo. All Rights Reserved.
</div>
</footer>
</body>