-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
546ce67
commit c66c170
Showing
1 changed file
with
43 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,51 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>App Page</title> | ||
<title>My Personal Blog</title> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<h1>Welcome to my page!</h1> | ||
<p>Link to my app page.</p> | ||
<header> | ||
<h1>My Personal Blog</h1> | ||
<nav> | ||
<ul> | ||
<li><a href="#">Home</a></li> | ||
<li><a href="#">About</a></li> | ||
<li><a href="#">Contact</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
|
||
<iframe title="Renewable Energy Adoption" width="1140" height="541.25" src="https://app.powerbi.com/reportEmbed?reportId=dda03f26-369f-4476-a4e5-080655fece62&autoAuth=true&ctid=b8f88a0b-3d95-478b-b123-a494d78523a4" frameborder="0" allowFullScreen="true"></iframe> | ||
</body> | ||
</html> | ||
<main> | ||
<article> | ||
<header> | ||
<h2>My First Blog Post</h2> | ||
<p class="post-date">Posted on April 20, 2023</p> | ||
</header> | ||
<img src="pic.jpg" alt="Blog Post Image"> | ||
<p>The world is facing an energy transition as the demand for energy continues to rise and traditional fossil fuel sources become increasingly scarce. Renewable energy sources such as wind, solar, and hydro power are becoming more economically viable and accessible, and many countries are investing in these technologies to reduce their reliance on fossil fuels and lower their carbon emissions.</p> | ||
<p>However, transitioning to renewable energy sources requires significant investments in infrastructure and research, and there are still many challenges that need to be addressed, such as the intermittency of renewable sources and the need for energy storage solutions.</p> | ||
<footer> | ||
<p class="tags">Tags: <a href="#">#energytransition</a> <a href="#">#renewableenergy</a> <a href="#">#climatechange</a></p> | ||
</footer> | ||
</article> | ||
|
||
<aside> | ||
<h3>Recent Posts</h3> | ||
<iframe title="Renewable Energy Adoption" width="1140" height="541.25" src="https://app.powerbi.com/reportEmbed?reportId=dda03f26-369f-4476-a4e5-080655fece62&autoAuth=true&ctid=b8f88a0b-3d95-478b-b123-a494d78523a4" frameborder="0" allowFullScreen="true"></iframe> | ||
<ul> | ||
<li><a href="#">Second Blog Post</a></li> | ||
<li><a href="#">Third Blog Post</a></li> | ||
<li><a href="#">Fourth Blog Post</a></li> | ||
</ul> | ||
</aside> | ||
</main> | ||
|
||
<footer> | ||
<p>© 2023 My Personal Blog. All rights reserved.</p> | ||
</footer> | ||
|
||
</body> | ||
</html> |