forked from rtivital/react-challenge-sort-and-search
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
24 lines (23 loc) · 924 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>React App</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.min.css">
</head>
<body>
<div class="container-fluid rc-intro">
<div class="container">
<img class="rc-img" src="images/react.svg" alt="">
<h1 class="rc-title">React Challenge</h1>
<p class="rc-description">Поиск и сортировка данных</p>
</div>
</div>
<div id="root"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script src="js/bundle.js"></script>
</body>
</html>