-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost.html
101 lines (71 loc) · 2.89 KB
/
post.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
97
98
99
100
101
<!DOCTYPE html>
<html>
<head>
<title>Post Name</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1" />
<link href="https://fonts.googleapis.com/css2?family=Russo+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
<style type="text/css">
.img-container{
max-width: 600px;
}
img{
width: 100%
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CTDGYTRK81"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-CTDGYTRK81');
</script>
</head>
<body>
<div class="nav-wrapper">
<!-- Link around dots-wrapper added after tutorial video -->
<a href="index.html">
<div class="dots-wrapper">
<div id="dot-1" class="browser-dot"></div>
<div id="dot-2" class="browser-dot"></div>
<div id="dot-3" class="browser-dot"></div>
</div>
</a>
<ul id="navigation">
<li><a href="index.html#contact">Contact</a></li>
</ul>
</div>
<div class="main-container">
<br>
<div class="img-container">
<img src="webscraper.jpg">
</div>
<h3>Web Scraper</h3>
<p>This project I started back in November 2020, when I just completed my python bootcamp course.
<br>
<br>
I've created this project in python using libraries like Requests and Beautifulsoup, to keep track on couple of choices of product and it's prices. I've programmed it to send automated mails to myself when the price of the selected products gets low.
<br>
<br>
It has been a long time now, since I started learning about programming languages and technologies.
<br>
<br>
While this year (2020) has been really a tough year for all of us, But the good thing happened to me this year is that, it gave me plenty of time to find my true passion that is The World of Computer's and Technology.To setup my goals, to think wisely and choose right path for the future and career i always dreamt to have.
<br>
<br>
Looking forward I'm trying build a good connection with the people working professionally & studying related to field of computers & technologies, to gain as much as knowledge from them to improve my self.</p>
<h5>Website sample for Coffee shops</h5>
<div class="img-container">
<img src="coffeeweb.jpg">
</div>
<p> I've created and designed this sample webpage for coffee shops, in HTML/CSS. I've tried to keep it as simple as possible.
<h5>Simple Calculator</h5>
<div class="img-container">
<img src="calculator.jpg">
</div>
<p>A Simple calculator for advance calculations, using python</p>
</div>
</body>
</html>