-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (40 loc) · 2.86 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-------------------------------------- BASIC HTML5 TAG -------------------------------------->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-------------------------------------- META TAG -------------------------------------->
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="description" content="Useful Basic Structure for HTML stuff in the head">
<meta name="author" content="Svendolin">
<title>HTML Basic Structure</title>
<!-------------------------------------- CDN FONTAWESOME ICONS (Keep me updated) -------------------------------------->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-------------------------------------- GOOGLE FONTS LINK -------------------------------------->
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:wght@300;400;500;600&display=swap" rel="stylesheet">
<!-------------------------------------- CSS LINK -------------------------------------->
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css">
<!-------------------------------------- CSS LINK TO SEPERATE MEDIA QUERY PAGE -------------------------------------->
<link rel="stylesheet" type="text/css" media="screen" href="css/mediaqueries.css">
<!-------------------------------------- JQUERY / JAVASCRIPT CONNECTION (Keep me updated) -------------------------------------->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js" defer></script>
<!-------------------------------------- GREENSOCK CONNECTION (Keep me updated) -------------------------------------->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.7.1/gsap.min.js" defer></script>
<!-------------------------------------- GREENSOCK ADD-ONS CONNECTION (Keep me updated) -------------------------------------->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.0.1/TextPlugin.min.js" defer></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.7.1/MotionPathPlugin.min.js" defer></script>
<!-------------------------------------- GREENSOCK JS CONNECTION -------------------------------------->
<script src="javascript/animation.js" defer></script>
<script src="javascript/code.js" defer></script>
</head>
<body>
<br>
<h1>Hello Voyager!<br></h1>
<h2>Hope I can help you out!<br><br></h2>
<h3>Please make sure to take the HTML-code pieces in the prescribed order!<br></h3>
<p>Side note: The href-links to CDNJS need to be updated from time to time!<br></p>
<p>LAST UPDATE: 03.10.2021</p>
</body>
</html>