-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpage.html
More file actions
25 lines (23 loc) · 872 Bytes
/
Copy pathwebpage.html
File metadata and controls
25 lines (23 loc) · 872 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HTML Revision Page</title>
</head>
<body>
<h1>Welcome To My Website</h1>
<p>I'm exited to eventually learn Django !</p>
<a href="https://www.djangoproject.com">Here is the link to professional website of Django</a>
<p>Here is the pic of python Logo </p>
<img src="https://content.techgig.com/thumb/msid-67459262,width-860,resizemode-4/Python-is-the-programming-language-of-the-year-for-2018.jpg?50999">
<p>Here is the main three reason Django is cool. </p>
<ol>
<li>Ridiculously Fast</li>
<li>Reassuring Secure</li>
<li>Exceedingly Scalable</li>
</ol>
<h2>Bonus : Optional Extra Credit</h2>
<p>Can you figure out how to make a picture in a link ? </p>
<a href="https://www.djangoproject.com"><img src="https://www.fullstackpython.com/img/logos/django.png"></a>
</body>
</html>