html
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
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device=width, initial-scale=1.0">
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<!--navigation menu-->
<nav>
<ul>
<li>
<a href="index.html">HOME</a>
</li>
<li>
<a href="about.html">Bolus Calculator</a>
</li>
<li>
<a href="diabetes2.html">Food Nutrients and Carb Counter</a>
</li>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
h1 {
Text-align:center;
Text-shadow:white 3px 3px 4px;
Border: #59d8da solid 3px;
outline-offset:2px;
outline:#ca19d7 solid 2px;
background-color:#ca19d7;
}
body{
display:block;
text-align:center;
border:#59d8da solid 2px;
outline-offset: 2px;
outline:#ca19d7
padding: 10px;
background-color:lightgrey;
}
ul{
list-style-type:none;
margin:0;
padding:0;
}
.logo{
outline:#ca19d7 solid 2px;
margin:150px;
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run