Você está aqui:

O que está incluso

A estrutura de diretórios do Framework da ANTT organiza os arquivos e as pastas como padrões seguinte abaixo:

nome-projeto/
├── css/
│   ├── bootstrap.css
│   ├── custom.css
│   ├── font-awesome.css
│   ├── global.css
│   ├── header.css
├── img/
│   ├── header.jpg
│   ├── loading.gif
│   ├── logo.png
│   ├── logo01.png
│   ├── logo02.png
│   ├── logoGETIN_Branco.png
│   ├── LogoGETIN_Cor.png
├── js/
│   ├── min/
│   │   ├── jquery.min.js
│   │   ├── html5shiv.min.js
│   │   ├── respond.min.js
│   ├── bootstrap.min.js
│   ├── custom.min.js
│   ├── jquery-ui.js
└── fonts/
    ├── fontawesome-webfont.ttf
    ├── fontawesome-webfont.woff
    ├── fontawesome-webfont.woff2
    ├── glyphicons-halflings-regular.eot
    ├── glyphicons-halflings-regular.svg
    ├── glyphicons-halflings-regular.ttf
    ├── glyphicons-halflings-regular.woff
    ├── glyphicons-halflings-regular.woff2
	

Modelo básico

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<meta http-equiv="X-UA-Compatible" content="IE=edge">
		<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
		<title>Nome do título</title>
		<!-- CSS -->
		<link href="css/bootstrap.css" rel="stylesheet">
		<link href="css/custom.css" rel="stylesheet">
		<link href="css/global.css" rel="stylesheet">
		<link href="css/font-awesome.css" rel="stylesheet">
		<link href="css/header.css" rel="stylesheet">
		<link href="css/nome-arquivo.css" rel="stylesheet">
		<!--[if lt IE 9]>
			<script src="js/min/html5shiv.min.js"></script>
			<script src="js/min/respond.min.js"></script>
		<![endif]-->
	</head>
	<body>
		...
		<!-- JavaScript -->
		<script src="js/min/jquery.min.js"></script>
		<script src="js/jquery-ui.js"></script>
		<script src="js/bootstrap.min.js"></script>
		<script src="js/custom.min.js"></script>
		<script src="js/nome-arquivo.js"></script>
	</body>
</html>

Suporte ao Navegador e Dispositivo

Chrome Firefox Internet Explorer Opera Safari
Android Suportado Suportado N/A Não Suportado N/A
iOS Suportado N/A Não Suportado Suportado
Mac OS X Suportado Suportado Suportado Suportado
Windows Suportado Suportado Suportado Suportado Não Suportado