Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added link to css and js files,replaced bg images #11

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 1-12-skeleton/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Weather App for UD811">
<title>Weather</title>
<!-- Insert link to stylesheet here -->
<link rel="stylesheet" type="text/css" href="styles/ud811.css">
</head>
<body>

Expand Down Expand Up @@ -142,7 +142,7 @@ <h1 class="header__title">Weather PWA</h1>
</svg>
</div>

<!-- Insert link to app.js here -->
<script type="text/javascript" src="scripts/app.js"></script>

</body>
</html>
4 changes: 2 additions & 2 deletions 1-12-skeleton/styles/ud811.css
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ body {
outline: none;
cursor: pointer; }
.header #butRefresh {
background: url(/images/ic_refresh_white_24px.svg) center center no-repeat; }
background: url(../images/ic_refresh_white_24px.svg) center center no-repeat; }
.header #butAdd {
background: url(/images/ic_add_white_24px.svg) center center no-repeat; }
background: url(../images/ic_add_white_24px.svg) center center no-repeat; }

.header__title {
font-weight: 400;
Expand Down