-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtojpg.html
78 lines (61 loc) · 2.92 KB
/
tojpg.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
<!DOCTYPE html>
<html lang="en">
<head>
<!--Meta data-->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="discription" content="A webpage to pdf converter web app">
<meta name="keyword" content="converter, webpage to pdf">
<meta name="author" content="Adesanya Ademola">
<!--Title and Favicon-->
<title>Web to JPG</title>
<!--Script and Stylesheet-->
<script src="https://kit.fontawesome.com/3f024e9297.js" crossorigin="anonymous"></script>
<link href='https://fonts.googleapis.com/css?family=Muli' rel='stylesheet'>
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular-route.js"></script>
</head>
<body>
<!--Angular app-->
<div ng-app="mySecondApp" ng-controller="mySecondCtrl">
<!--Top navigation bar-->
<ul>
<li><a href="index.html">Web To PDF</a></li>
<li><a href="tojpg.html">Web To JPG</a></li>
<li><a href="topng.html">Web To PNG</a></li>
</ul>
<!--Converter app-->
<div class="container">
<h1>Convert Web To JPG</h1>
<!--Url input and api integration-->
<form class="myform" action="https://v2.convertapi.com/convert/web/to/jpg?Secret=8RLeXnSKGaetC2Ly&download=attachment" method="post" enctype="multipart/form-data" ng-submit="getResponse()">
<input type="text" placeholder="www.example.com" name="Url" value="" ng-model="webUrl">
<button type="submit" value="Convert file" ng-disabled="check"><img src="convert.svg"></button>
</form>
<p class="status">{{ status }}</p>
<!--App Instructions-->
<div class="instructions">
<!--instruction one-->
<div class="ins-one">
<i class="fa-solid fa-link"></i>
<p>Enter web page URL to convert into JPG</p>
</div>
<!--instruction two-->
<div class="ins-two">
<i class="fa-solid fa-wand-magic-sparkles"></i>
<p>Press "Enter" and start the magic!</p>
</div>
<!--instruction three-->
<div class="ins-three">
<i class="fa-solid fa-download"></i>
<p>Download the result in just seconds!</p>
</div>
</div>
</div>
</div>
<!--End of Angular converter app-->
<!--Angular app script-->
<script src="mySecondApp.js"></script>
</body>
</html>