forked from ArtemGnatenko/JavaScript-Lectures
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
18 lines (18 loc) · 652 Bytes
/
index.html
File metadata and controls
18 lines (18 loc) · 652 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!doctype html>
<html>
<head>
<title>Base template</title>
<link type="text/css" rel="stylesheet" media="all" href="css/main.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/lodash/4.17.4/lodash.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.3/angular.min.js"></script>
<script src="js/main.js" defer></script>
</head>
<body>
<!-- This is base template for testing -->
<h1 class="mainTitle">
<img class="logo" src="images/logo.png" alt=""/>
<span class="text">Base template</span>
</h1>
</body>
</html>