-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html.html
52 lines (43 loc) · 1.88 KB
/
index.html.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
<!-- Student name: Nargiz Guliyeva -->
<!-- Course name: Creating anf Exploring Software Environments with Script and Node.js -->
<!-- Type:Final Project -->
<!-- Title: Sentiment Analysis with JavaScript -->
<!-- Description: HTML Webpage -->
<!-- Declaration defines that this document is an HTML -->
<!DOCTYPE html>
<html lang="en">
<head> <!-- Element contains meta information -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sentiment Analysis</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background: url('https://images.unsplash.com/photo-1487700160041-babef9c3cb55?q=80&w=2052&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center center fixed;
background-size: cover;
}
#result {
margin-top: 20px;
}
</style>
</head>
<body>
<h2>Creating and Exploring Software Environments with JavaScript and Node.js</h2>
<h2>Final Project on Sentiment Analysis with JavaScript</h2>
<h3><i>Nargiz Guliyeva </i></h3>
<br>
<label for="textInput">Enter Website URL:</label>
<input type="text" id="textInput" placeholder="https://www.example.com">
<button onclick="analyzeSentiment()">Analyze </button>
<div id="result"></div>
<script src="frontend.js"></script>
</body>
</html>
<!-- Reference: -->
<!-- 1. Beautiful And Simple WebPage Using HTML Only (No CSS Used) | HTML TUTORIALS, -->
<!--Retrieved from https://www.youtube.com/watch?v=kMme0C9lMhQ -->
<!-- 2. HTML Introduction -->
<!-- Retrieved from https://www.w3schools.com/html/html_intro.asp -->
<!-- 3. Unsplash Free Photostock by Sarah Dorweiler, -->
<!-- Retrieved from https://unsplash.com/photos/green-leafed-plant-on-clear-glass-vase-filled-with-water-x2Tmfd1-SgA -->