-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (31 loc) · 1.3 KB
/
index.html
File metadata and controls
33 lines (31 loc) · 1.3 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
<!--My first tutorial-->
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>My test page</title>
<link href="styles/style.css" rel="stylesheet" />
<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=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<script async src="scripts/main.js"></script>
</head>
<body>
<h1> Chrome is also cool ! </h1>
<img src="images/chrome.png" alt="My test image" >
<p>At Chrome, we're a global community of</p>
<ul>
<li>technologists</li>
<li>thinkers</li>
<li>builders</li>
</ul>
<p> Google chrome is similar to Mozilla in the following ways </p>
<ol>
<li> It is faster </li>
<li> It is safer </li>
</ol>
<p>But, People have long been using chrome just because they are used to it and do not value their privacy. But slowly people are realising that big companies like Google sell their data and make profits. <a href="https://www.shutterstock.com/image-vector/laughing-tears-face-emoji-3d-style-2465644073">Ha Ha Ha…</a> </p>
<button>Change user</button>
</body>
</html>