+ 1
I have learn html. css. javascript and I want to make official website but I don't what to make because I am 14 years old I don't have business...so help me to think what to make
6 Antworten
+ 2
Well before making a website you need an idea, while you think of an idea for a website maybe it would be better to learn more about HTML, Javascript and CSS.
+ 1
what are your interests? Think of something and turn it into useful app or website that you and others can benefit from
+ 1
u could do it on about fav star or .......
+ 1
Think of a passion, write a site for it to share with others... For example you can create a site that will provide the updates & latest news about the games, sports, movies, music etc.
0
may be a game wikia, fan page, a blog about anything you like, try to clone some well known pages templates to test your skills, lots of thing you could do
0
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/background"
tools:context="com.chalkstreet.learnandroid.main.WifiActivity">
<TextView
android:id="@+id/textViewHeader"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:padding="10dp"
android:text="Lets you know if wifi is On. Uses Content Provider to get wifi status."
android:textColor="@color/primary_dark"
android:textSize="16sp" />
<TextView
android:id="@+id/textViewwifi"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="Wifi Staus Unknown"
android:textColor="#ffff001b"
android:textSize="30sp" />
<Button
android:id="@+id/buttonSrc"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="10dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:background="@drawable/source_but"
android:text="VIEW SOURCE CODE FOR ACTIVITY" />
</RelativeLayout>