Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 36494c3

Browse files
petebacondarwingkalpak
authored andcommitted
step-1 Static Template
- Add a stylesheet file ('app/app.css'). - Add a static list with two phones.
1 parent 38ea50b commit 36494c3

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

app/app.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
body {
2+
padding-top: 20px;
3+
}
4+

app/index.html

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,27 @@
22
<html lang="en" ng-app>
33
<head>
44
<meta charset="utf-8">
5-
<title>My HTML File</title>
5+
<title>Google Phone Gallery</title>
66
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css" />
7+
<link rel="stylesheet" href="app.css" />
78
<script src="bower_components/angular/angular.js"></script>
89
</head>
910
<body>
1011

11-
<p>Nothing here {{'yet' + '!'}}</p>
12+
<ul>
13+
<li>
14+
<span>Nexus S</span>
15+
<p>
16+
Fast just got faster with Nexus S.
17+
</p>
18+
</li>
19+
<li>
20+
<span>Motorola XOOM™ with Wi-Fi</span>
21+
<p>
22+
The Next, Next Generation tablet.
23+
</p>
24+
</li>
25+
</ul>
1226

1327
</body>
1428
</html>

0 commit comments

Comments
 (0)