Added another profile website as a project

This commit is contained in:
Muhammad Ibrahim 2024-12-04 16:08:13 +05:30
parent 931dd38cc9
commit 95894b2601
2 changed files with 17 additions and 7 deletions

View File

@ -0,0 +1,10 @@
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def home():
return render_template("index.html")
if __name__ == "__main__":
app.run(debug=True)

View File

@ -10,10 +10,10 @@
<meta charset="utf-8" /> <meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="assets/js/html5shiv.js"></script><![endif]--> <!--[if lte IE 8]><script src="assets/js/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/css/main.css" /> <link rel="stylesheet" href="/static/assets/css/main.css" />
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]--> <!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]--> <!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript> <noscript><link rel="stylesheet" href="/static/assets/css/noscript.css" /></noscript>
</head> </head>
<body class="is-loading"> <body class="is-loading">
@ -23,9 +23,9 @@
<!-- Main --> <!-- Main -->
<section id="main"> <section id="main">
<header> <header>
<span class="avatar"><img src="images/avatar.jpg" alt="" /></span> <span class="avatar"><img src="/static/images/avatar.jpg" alt="" /></span>
<h1>Jane Doe</h1> <h1>Muhammad Rameen</h1>
<p>Senior Psychonautics Engineer</p> <p>Learning Python Programming & web development</p>
</header> </header>
<!-- <!--
<hr /> <hr />
@ -66,7 +66,7 @@
--> -->
<footer> <footer>
<ul class="icons"> <ul class="icons">
<li><a href="#" class="fa-twitter">Twitter</a></li> <li><a href="https://github.com/Arcron-ArchLinux" class="icon brands fa-github" target="_blank"><span class="label">Github</span></a></li>
<li><a href="#" class="fa-instagram">Instagram</a></li> <li><a href="#" class="fa-instagram">Instagram</a></li>
<li><a href="#" class="fa-facebook">Facebook</a></li> <li><a href="#" class="fa-facebook">Facebook</a></li>
</ul> </ul>
@ -76,7 +76,7 @@
<!-- Footer --> <!-- Footer -->
<footer id="footer"> <footer id="footer">
<ul class="copyright"> <ul class="copyright">
<li>&copy; Jane Doe</li> <li>&copy; Muhammad Rameen</li>
<li>Design: <a href="http://html5up.net">HTML5 UP</a></li> <li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul> </ul>
</footer> </footer>