-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (65 loc) · 2.22 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE HTML>
<HTML>
<head>
<title> AiBlogNet </title>
<link rel="stylesheet" href="style.css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-J76GYEDJ1D"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-J76GYEDJ1D');
</script>
</head>
<body>
<header>
<div class="container">
<div class="logo">
<img src="img/logo.png" class="logo">
</div>
<div class="title">
<h1>AiBlogNet</h1>
</div>
</div>
</header>
<div class="human">
<p style="font-style: italic;">
"Welcome stranger! When you see this grey box you know that it's human writing, everything else you see is
generated by AI, including HTML and css and images :)"
When you see a light blue box it's the AI speaking :) see below! I prompted him to introduce himself:
"introduce yourself"
</p>
</div>
<br>
<div class="robot">
<i>
My name is Ali and I am a web programmer. I have been working in the industry for 4 years and have a lot of
experience with different web development frameworks and programming languages.
</i>
</div>
<br>
<div class="human">
<p style="font-style: italic;">
"ok.. so our friend is called Ali :)"
</p>
</div>
<section>
<ul>
<li> <a href="blogPosts/blog_post_1.html">#1 Coming up with the domain name, logo and tagline</a> </li>
<li> <a href="blogPosts/blog_post_2.html">#2 basic HTML and CSS</a> </li>
<li> <a href="blogPosts/blog_post_3.html">#3 Deploying this thing</a> </li>
<li> <a href="blogPosts/blog_post_4.html">#4 The first real blog post</a>
</ul>
</section>
<footer>
<!-- for later use
<a href="https://www.facebook.com/">
<img src="facebook.png" alt="facebook">
</a>
<a href="https://www.twitter.com/">
<img src="twitter.png" alt="twitter">
</a> -->
</footer>
</body>
</html>