-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist-maker.html
More file actions
130 lines (116 loc) · 5.97 KB
/
list-maker.html
File metadata and controls
130 lines (116 loc) · 5.97 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>List Maker</title>
<!--For SEO-->
<link rel="canonical" href="https://web-dev-notes.web.app/">
<meta name="title" content="Weather reports">
<meta name="description" content="Get accurate and up-to-date weather reports, forecasts, and conditions for your location and around the world. Stay informed with Your Weather." />
<meta name="keywords" content="weather reports, weather forecasts, local weather, global weather, weather conditions, weather updates" />
<meta name=”robots” content="index, follow">
<meta property="og:title" content="Weather reports"/>
<meta property="og:description" content="Get accurate and up-to-date weather reports, forecasts, and conditions for your location and around the world. Stay informed with Your Weather.">
<meta name="author" content="Murali.R" />
<meta property="og:type" content="website">
<!-- <meta property="og:image" content=""> -->
<meta property="og:url" content="https://web-dev-notes.web.app/">
<meta property="og:site_name" content="Weather reports">
<meta name="twitter:title" content="weather reports">
<meta name="twitter:description" content="Get accurate and up-to-date weather reports, forecasts, and conditions for your location and around the world. Stay informed with Your Weather.">
<!-- <meta name="twitter:image" content=""> -->
<!-- <meta name="twitter:site" content="">
<meta name="twitter:creator" content=""> -->
<!--Bootstrap V5-->
<link async href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!--Angular js-->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<!--Google Fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<!---For icons-->
<script async src="https://cdn.lordicon.com/bhenfmcm.js"></script>
<!--Fontawesome 5 CDN-->
<link rel="stylesheet" async href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!--JS-->
<script src="assets/js/app.js"></script>
<script src="assets/js/main.js"></script>
<!--External CSS-->
<link rel="stylesheet" href="assets/css/main.css">
<!--Internal CSS-->
<style>
body{background-color:ghostwhite;font-family: 'Poppins', sans-serif; }
</style>
</head>
<body>
<header>
<nav class="navbar navbar-expand-sm navbar-dark" style="background-color: dimgrey;">
<div class="container-fluid">
<!-- <a class="navbar-brand" href="#">Logo</a> -->
<button class="navbar-toggler" aria-label="toggler-icon" type="button" data-bs-toggle="collapse" data-bs-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link text-light" href="index.html" target="_blank">Home</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="resume-builder.html" target="_blank">Resume Builder</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="mychatgpt.html" target="_blank">My ChatGPT</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<footer>
<div class="container footer-con mt-5 mb-5">
<div class="row justify-content-start align-items-center">
<div class="col-lg-1">
<a href="https://www.instagram.com/webdev_murali/" target="_blank" >
<img src="assets/img/icons/instagram-sm.svg" alt="Instagram" title="Instagram" class="img-fluid">
</a>
</div>
<div class="col-lg-1">
<a href="https://api.whatsapp.com/send?phone=9514773633&text=Hi..." target="_blank">
<img src="assets/img/icons/whatsapp-sm.svg" alt="whatsapp" title="whatsapp" class="img-fluid">
</a>
</div>
<div class="col-lg-1">
<a href="https://www.youtube.com/@RTMurali-Edits" target="_blank">
<i class="fab fa-2x fa-youtube" style="color:red;" title="youtube"></i>
</a>
</div>
</div>
</div>
</footer>
<!--JS-->
<script>
//const fs = require('fs');
// Instead of require
import myModule from './myModule.js';
// Use myModule functions or variables here
// Define a sample JSON data structure as a JavaScript object
const data = {
name: 'John Doe',
age: 30,
email: 'johndoe@example.com',
is_subscribed: true,
interests: ['programming', 'travel', 'music']
};
// Specify the file path where you want to save the JSON file
const filePath = 'assets/json/sample.json';
// Convert the JavaScript object to a JSON-formatted string
const jsonData = JSON.stringify(data, null, 4); // The 'null' and '4' parameters add formatting for readability
// Write the JSON data to the file
fs.writeFileSync(filePath, jsonData);
console.log(`JSON data has been written to ${filePath}`);
</script>
</body>
</html>