-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (57 loc) · 2.95 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<title>876126's Portfolio Home</title>
<link href="css/style.css" rel="stylesheet" title="Default" />
</head>
<body>
<nav>
<a href="index.html"> <img class="logo" src="images/logo.png" alt="uop-logo" /> </a>
<p class="up-number">UP Number: 876126</p>
<ul>
<li class="active"><a href="index.html">Home</a></li>
<li class="dropdown">
<a href="#">
Portfolio <svg class="dropdown-arrow" width=1em height=1em> <image class="dropdown-arrow" href="images/dropdown-arrow.svg" width="1em" height="1em"/></svg>
</a>
<ul class="dropdown-content">
<li><a href="portfolio/litreview.html">Literature Review</a></li>
<li><a href="portfolio/disclog.html">Discovery Log</a></li>
</ul>
</li>
<li> <a href="aboutme.html">About Me</a> </li>
</ul>
</nav>
<main>
<section id="welcome">
<h1>Welcome!</h1>
<p>Welcome to my <strong>Website/Eletronic Portfolio</strong>, this is the Homepage or as we know as <code>"index.html"</code>.</p>
<p>This website is coded only with HTML and CSS and it is responsive from a minimum width of 320 pixels.</p>
<p>At the top you can find the logo and a navigation bar so you can navigate through the website in a simple way.
<p>What you are reading and the images below are the main content of this page.</p>
<p>At the bottom is a footer with a few images (logos) of Browsers that redirects you to the official pages of them and the logo of W3C that validate the current page automatically.</p>
<p>Enjoy!</p>
</section>
<figure class="index-container">
<img class ="welcome-img" src="images/welcome.png" alt="welcome"/>
<img class ="obama-img" src="images/obama.png" alt="obama"/>
<img src="images/helloworld.png" alt="helloworld"/>
<figcaption>"YES WE CAN"</figcaption>
</figure>
</main>
<footer>
<p>Try other browser and/or validate this page!</p>
<figure>
<a href="https://www.mozilla.org/en-US/firefox/"><img src="images/firefox.png" alt="firefox-logo" width="32" height="32" /></a>
<a href="https://www.google.com/chrome/"><img src="images/chrome.png" alt="chrome-logo" width="32" height="32" /></a>
<a href="https://www.opera.com/"><img src="images/opera.png" alt="opera-logo" width="32" height="32" /></a>
<a href="https://www.apple.com/safari/"><img src="images/safari.png" alt="safari-logo" width="32" height="32" /></a>
<a href="https://www.microsoft.com/en-us/windows/microsoft-edge"><img src="images/microsoft-edge.png" alt="microsoft-edge-logo" width="32" height="32" /></a>
<a href="https://validator.w3.org/check?uri=referer"><img src="images/w3c.png" alt="w3c-logo" width="32" height="32" /></a>
</figure>
</footer>
</body>
</html>