forked from charwxm/test_repo_for_tp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirst.html
41 lines (33 loc) · 817 Bytes
/
first.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>This is the title</title>
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@100&display=swap" rel="stylesheet">
<!-- Stylesheet -->
<style>
body {
font-family: 'Raleway', sans-serif;
}
.another-style{
font-family:Arial, Helvetica, sans-serif;
color: red;
}
</style>
</head>
<body>
<div>
<a href="index.html">Go home</a>
<h1> This is first.html </h1>
<h1> HELP ME OUT !!!! </h1>
<h1 class="another-style"> This is another style</h1>
</div>
</body>
<!-- Javascript -->
<script>
console.log("print something");
</script>
<!-- <script>
console.log("print something");
</script> -->
</html>