forked from MakerSpace-FRI-UTAustin/App2-HelloWorld
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
33 lines (24 loc) · 903 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
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<!-- https://www.w3schools.com/w3css/default.asp -->
<head>
<title>Hello World</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="stylesheet" href="w3.css">
<link rel="stylesheet" href="w3-colors-flat.css">
</head>
<body>
<header class="w3-container w3-flat-carrot">
<h1>My Hello World App!</h1>
</header>
<div class="w3-container"><!-- place main content here and it will show up between header and footer.-->
<p>Hello World! (Itzel) is here.</p>
<img src="https://i.imgur.com/vHngpfe.png" alt= "python">
<img src="https://i.imgur.com/a/girOLh.png" alt= "C++">
</div><!-- /content -->
<footer class="w3-bottom w3-container w3-flat-carrot">
<p>This is the footer!</p>
</footer>
</body>
</html>